Best way to do partial update content on ASP.NET
- by kevin
Initially i was planning to use master page for every page in my application. At the end, i found out every times the page is changed, it reload full page even it have the same master page. I have confused the frameset with the master page. Then, i have 2 ideas in my minds to achieve it by not using master page.
Using iframe and set the attribute to runat server, so that i can change the page in my codebehind.(I preferred to control the page flow in server side)
Make every single child page to user control. Then dynamically load it to the panel in codebehind.
Please give me some advise which method is the best in ASP.NET with AJAX enabled, or other ways that is better. Thanks.