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

What are the components of ado.net?

0 Answers  


What is the behavior of a Web browser when it receives an invalid element?

0 Answers   MindCracker,


Explain About duration in caching technique

0 Answers   BirlaSoft,


What is difference between viewstate and session in asp net?

0 Answers  


What is the difference between the get method () and post method ()?

0 Answers  






Why is it preferred to not use finalize for clean up?

0 Answers  


we can able to display a MessageBox in asp .net without using any script langages?

8 Answers   ABC,


What are the major built-in objects in ASP.NET?

0 Answers   MindCracker,


How to manage different kinds of sessions in ASP.NET?

0 Answers   Cap Gemini,


Is asp.net 64-bit enabled? How?

0 Answers  


if i want to give an alert message like "try after sometime" to a web page which is being seen by other person.if a web page is not seen by anyone then it should display otherwise it show a display a message stating that other person is viewing so try after some time........how can i implement this.

0 Answers   Siemens,


What is state management react?

0 Answers  


Categories