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

Define session in asp.net.

0 Answers  


Explain the namespace classes used in asp.net mvc? : asp.net mvc

0 Answers  


What are two ways that you can set the minimum and maximum values for a rangevalidator? When would you use each technique?

1 Answers  


How do you do validations. Whether client-side or server-side validations are better.?

5 Answers   Microsoft,


Just by seeing the signature of the bean how can you specify whether it is a stateful or stateless session bean?

0 Answers  






what is the difference b/w .net 1.1 and 2.0 ?

2 Answers   Polaris,


What property is used on the datatable to indicate a conflict after an update? a) HasConflict b) HasError c) HasCollision d) HasDataError

1 Answers   Syntax Softtech,


What is another word for redirect?

0 Answers  


How asp.net mvc differs from asp.net web forms? : asp.net mvc

0 Answers  


Which is faster viewbag or viewdata?

0 Answers  


Can we use a static function with a non-static variable?

0 Answers  


Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process?

1 Answers   Patni, Perot Systems, Sedna Technology,


Categories