Can you explain what is “AutoPostBack” feature in ASP.NET ?
By on Apr 29, 2007 in ASP.NET Interview Questions
AutoPostBack is built into the form-based server controls, and when enabled, automatically posts the page back to the server whenever the value of the control in question is changed.



2 Comment(s)
By kamala devi on Jun 5, 2008 | Reply
AutoPostBack property returns true, when the page gets loaded on the second time onwards. i.e.If the autopostback property is true the page get post back.
By Roopesh on Jun 23, 2008 | Reply
When an asp.net page is submitted after entering some Field datas that is send to server side for processing and is send back to client. This operation is called a postback.
Don’t confuse Refresh and Back Button with postbacks.