what is postback implementation?when pre-render event n
init event is fired?

Answers were Sorted based on User's Feedback



what is postback implementation?when pre-render event n init event is fired?..

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

what is postback implementation?when pre-render event n init event is fired?..

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

Post New Answer

More ASP.NET Interview Questions

How do you handle session management in ASP.NET and how do you implement them. How do you handle in case of SQLServer mode ?

0 Answers   Microsoft,


Write a code for "RequiredFieldValidator" in java script

5 Answers   Wipro,


what is caching?

4 Answers   Microsoft,


difference between Trace and Debug ?

2 Answers   Accenture, HCL, Patni,


What are validators and list some validators of asp.net?

0 Answers  


What is cas?

0 Answers  


Is data edited in the Repeater control?

0 Answers   Siebel,


How many Garbage Collectors are there for one Application or one Page

1 Answers   Emphasis,


Can we Run the Application without Build

3 Answers   Emphasis,


What’s the use of “GLOBAL.ASAX” file?

0 Answers  


How to configure a website without using IIS.

3 Answers   CGI,


Features in ASP.NET ?

1 Answers   Microsoft,


Categories