R – show an aspx page in content tag

asp.netmaster-pages

I have a master page(MyMasterPage.master) with two content place holders. I wanna show another aspx page(MyHeader.aspx) in the 1st content place holder of a content page(MyContentPage.aspx) that uses my master page.

Best Answer

You should be using user controls for reusable components of a pages. Create a Header.ascx file instead of a .aspx. You can then drag that into your ContentPlaceHolder from the solution explorer when in design mode.

http://msdn.microsoft.com/en-us/library/y6wb1a0e.aspx

Related Topic