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
Define page fragment caching?
What is request and response in asp.net?
What is postback in asp net?
When was asp.net released?
What are main return types supported in Web API?
Describe the Server Control Events of ASP.NET?
Where code pages are used?
Explain what are webservices?
Explain authorization levels in .net ?
What is .net remoting?
Is it possible for me to change my aspx file extension to some other name?
What is Bundling and Minification in MVC?
What tags do you need to add within the asp:datagrid tags to bind columns manually? How?
Do you know about caching with the datasource controls?
What are the properties of the eventargs argument when capturing keyboard events?