I need to achieve the following architecture within my project....
I have 1 file DEFAULT.ASPX
that has contentholders linked to a masterpage and then uses webparts etc... that bit is fine... however I want to be able to load my new pages through DEFAULT.ASPX in the following way... default.aspx?pageID=1 (homepage), default.aspx?pageID=2 (another page), and so on... in this way the pageID parameter tells the page what masterpage to use.
What is the best method for achieving this?
Dipal ChoksiPosted May 20, 2008, 5:04 PM
If you want to load new pages based on the pageID parameter, you can setup Redirect in your Page based on the querystring parameter..
Did you want to load new pages for different values of PageID or did you want to change the masterpage being used for default.aspx? The questions wasn't clear in your post..