Best way to do partial update content on ASP.NET
Posted
by kevin
on Stack Overflow
See other posts from Stack Overflow
or by kevin
Published on 2010-04-15T08:15:03Z
Indexed on
2010/04/15
9:33 UTC
Read the original article
Hit count: 281
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.
© Stack Overflow or respective owner