Hi all,
I have implemented a web site with the possibility to generate dynamic pages. The content of the pages is stored in a DB and I load it into a "Literal" control code behind.
For each pages, I can set the master page dynamically, but I would like to insert the possibility to don't set master page too, so generate the page with the content only.
The only way that
I thought, is to implement two different "view-page":
- the "ViewPage_MasterPage.aspx": that has the html structure of a page with master.page linked on, and in wich I implement the code to dynamically set the master page
- the "ViewPage_NoMasterPage.aspx", that is a normal page, without master.page link.
Is there a way to use ONLY ONE view page a ...
Go to the complete details ...