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

Is object a value type or referenced type?

2 Answers  


Can we use http handlers to upload a file in asp.net?

2 Answers  


when we write the html code with runat = server it works like a server control than why we use the server control?

1 Answers  


What are the asp.net objects? is it application obects, cache objests etc. or is it state managements, web services etc?

3 Answers   Syntel,


What is the difference between web config and machine config files?

0 Answers  






What is meant by ispostback in asp net?

0 Answers  


How to check null values in dataset ?

6 Answers   Digital GlobalSoft,


Describe the method to create a permanent cookie?

0 Answers   Siebel,


To bind columns manually which tags do you need to add within the asp:datagrid ?

0 Answers   Siebel,


Hi , I am Basha. I am searching a job in dotnet.Plz tell me the order of page events in asp.net 2.0> plz send faq's related to c#.net,asp.net,sqlserver2000 etc. to my mail-id : bashask.ss@gmail.com

4 Answers   Sapient,


Hi, I Dont know about Application and Session State management. Can anyone explain me with simple example?

1 Answers  


What permissions do asp.net applications posses by default?

0 Answers  


Categories