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
Do you know using sql cache invalidation?
Explain what is postback in asp. Net?
What is another word for redirect?
What is the appSettings Section in the web.config file?
What is clr? Difference between clr & cts?
Explain how cookies work.
What does the orientation property do in a menu control?
How do you do client-side validation in .net? How to disable validator control by client side javascript?
Explain about asp.net 2.0 themes?
What are query strings used for?
How can I create master page in asp net?
What are the features of asp.net mvc?
How can we create Tree control in asp.net?
Explain about asp.net caching?
What is the exact purpose of http handlers?