I was working on a project and was required to have the navigation bar remained static(e.g. facebook), not CSS fixed position but say when I click an item in the menu to load its content, only the content area gets refreshed.
Hence I believe I will need a container in the center of the page to load the dynamic contents. Right now, the navigation bar is included in all my aspx pages which are identical and the bar refreshes from page to page.
I read several articles/post and the approach I thought of was to wrap every single aspx into usercontrols and then dynamically load it into a div inside my masterpage upon being called from the respective menu items which is based on this article:
http://msdn.microsoft.com/en-us/library/c0az2h86%28v=VS.100%29.aspx
One of my pages uses jquery tabs to show/hide multiple child div content in a parent div which means all div contents are in one single page, however now I am dealing with 30 over aspx pages which mean this way should be out but that's the concept I need.
Problem is I have over 30 huge aspx pages and not sure if this is the way to go. Any advises for my situation? Thanks.