User-221787929 posted
I guess I can create a page and clock how fast it takes to load the page just using forms. Then create another sample to measure caliing a new page.
I was kinda looking more for other peoples experiences. I keep reading that using multiple forms on a page is faster than calling another page.
http://msdn.microsoft.com/en-us/library/6ws165a4(VS.71).aspx
Navigation time. Moving from form to form on a single page is faster than loading a new page. This is true even if the new page contains few controls.
It seems to me that if you have move from one form to another and it has to go back to the server to still send the content back to the client than it would be just as fast as calling a new page that did the same thing. Just not sure how asp.net is compiling
the pages on the server that it is going to make it that much faster to keep adding more forms on a single page than calling a new page.