what is postback implementation?when pre-render event n
init event is fired?
Answer Posted / r.raghu vamsi
The values of the Form are posted to the same page and the
very same page can process the data. This model is called
post back.
Each Asp .net page when loaded goes through a regular
creation and destruction cycle like Initialization, Page
load etc., in the beginning and unload while closing it.
This Postback is a read only property with each Asp .Net
Page (System.Web.UI.Page) class. This is false when the
first time the page is loaded and is true when the page is
submitted and processed. This enables users to write the
code depending on if the PostBack is true or false (with the
use of the function Page.IsPostBack()).
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How is application management and maintenance improved in asp.net 2.0?
How do you deploy your asp.net application?
Fetch one page value to another page without using state-managment ?
What is AutoPostback?
What is the advantage of using Windows authentication in a Web application?
How to add DateTime Control in normal DataGrid Server Control?
What is a web api? Which protocol is used in a web api?
What is the advantage of mvc over asp.net? : Asp.Net MVC
How do you hide the columns?
Explain why datareader is useful?
If 200 is for all successful operation then why do we have 201 response codes?
What is routing in MVC?
What are the different types of validation controls provided in ASP.NET?
How does asp page work?
How to do state management in ASP.NET?