What do you understand by “PostBack”?


ASP.NET is a server-side and not a client-side technology, events that occur on a page are handled by code running on the server. For this to work, ASP.NET uses the mechanism of “Postback”.

When an event is triggered, for instance a button is clicked; the page is submitted back to the server for processing, along with the information about the event and any existing data on the page (via view state).

Comments

Popular posts from this blog

jQuery Basics

What is the difference between a Page Layout and Master Page in SharePoint?

Accessing data from SharePoint 2010 to an ASP.NET application