Search code examples
asp.netrefreshdoublebuffering

asp.net double buffering?


How can I use double buffering in asp.net C#?

I want smthng like that : I dont want full page refresh when I click a button in a web page.. I think it can be solved with double buffering. When a button clicked for redirect a content page (button-in master page), current page will not go until the redirected page completely load in the background..

Can anybody help me, please ?


Solution

  • Have a look at

    The UpdatePanel control is probably the most important control in the ASP.NET AJAX package. It will AJAX'ify controls contained within it, allowing partial rendering of the area.