PDA

Click to See Complete Forum and Search --> : [2.0] accessing master page from another project


popskie
May 20th, 2007, 03:43 AM
Anyone can help me to solve my from problem regarding masterpage. I used vs 2005 windows 2003 and IIS 6.0.

Pls look at the attach image.



thanks,

Popskie

mendhak
May 22nd, 2007, 11:31 AM
The only way to do this is to create your own class that inherits from MasterPage and implements all of its required methods, and within that of course, sending out whatever HTML you need to use as part of the regular MasterPage. Keep in mind, there won't be a designer for this, so you'll essentially be using the Output method to write() everything out manually. Not efficient.

Best answer is, make a copy of the master page in the other project.

popskie
May 22nd, 2007, 07:55 PM
Thanks mendhak