what is postback implementation?when pre-render event n
init event is fired?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / surjith
post back event happens when the sender page sends Http
request to the same page. checking for ispostback() and
then writing the code within the if block would be the
implementation for postback.
The following is the order of events that occur when a page
is loaded.
init-> load -> prerender and finally unload.
Is This Answer Correct ? | 4 Yes | 3 No |
How do you handle session management in ASP.NET and how do you implement them. How do you handle in case of SQLServer mode ?
Write a code for "RequiredFieldValidator" in java script
what is caching?
difference between Trace and Debug ?
2 Answers Accenture, HCL, Patni,
What are validators and list some validators of asp.net?
What is cas?
Is data edited in the Repeater control?
How many Garbage Collectors are there for one Application or one Page
Can we Run the Application without Build
What’s the use of “GLOBAL.ASAX” file?
How to configure a website without using IIS.
Features in ASP.NET ?