Cross Application masterpages

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a scenario where I would like to show contentpages from one asp.NET
application in a masterpage from another application. I've tried to do this
by putting one appilcation in a virtual directory below the other one, but
when I try to set the masterpagefile to ../MasterPage.master I get an error
message saying something about the master being outside the application
directory. Is there any way I could get around this, or is there any other
way I could use a masterpage from another application?
 
MasterPages are compiled just like ASPX pages and ASCX controls, thus they
need to reside under the application directory. You can do the virtual directory
trick as you said you've been doing.

-Brock
DevelopMentor
http://staff.develop.com/ballen
 
Back
Top