What is the difference between Postback and Ispostback
Property?

Answers were Sorted based on User's Feedback



What is the difference between Postback and Ispostback Property?..

Answer / siddartha

PostBack: Postback is the event which sends the form data
to the server. The server processes the data & sends it
back to the browser. The page goes through its full life
cycle & is rendered on the browser. It can be triggered by
using the server controls.And the IsPostBack property of
the page object may be used to check whether the page
request is a postback or not. IsPostBack property is of the
type Boolean.

Is This Answer Correct ?    157 Yes 18 No

What is the difference between Postback and Ispostback Property?..

Answer / rajender chauhan

Postback: Postback is a event which fire when page data
goes to server.
IsPostBack: Ispostback is page property of bool type and it
become true when page come again to browser.

Is This Answer Correct ?    64 Yes 15 No

What is the difference between Postback and Ispostback Property?..

Answer / avirnenisiva

Post back is the process the sending data get back to server
for processing.
Is post back property checks whether page is being loaded for
first time.
if it is False :means first time loaded.
if it is True: means round trip to server.

Is This Answer Correct ?    37 Yes 6 No

What is the difference between Postback and Ispostback Property?..

Answer / sanjay maurya

postBack is a event is reload page on the server.
And the IsPostBack property of
the page object may be used to check whether the page
request is a postback or not. IsPostBack property is of the
type Boolean.

Is This Answer Correct ?    18 Yes 6 No

What is the difference between Postback and Ispostback Property?..

Answer / nabhirai jain

ISpostback()is the event which is being generated when the
page is posted back to itself to handle the events in
page life cycle.
It is a page event.
It is generated inside page_Load() event.
It holds boolean value.
False;First time when the page is loaded.
Facebook login page loaded in the browser on the first request.
True: when the user fill the form and click on submit to verify and store the data on server side.
execute on server side.
control is send back to page to handle the other page events at that moment boolean value holds true value.

Is This Answer Correct ?    4 Yes 2 No

What is the difference between Postback and Ispostback Property?..

Answer / satheshkumar

postback means full life cycle of your request

ispostback: whether the urrent page is post or not.just check it.and its a bololean type

Is This Answer Correct ?    4 Yes 2 No

What is the difference between Postback and Ispostback Property?..

Answer / naveen

postback request is nothing but when user click on any button will go to server
ispostback is nothing but by default is false
when user is change propery is true is know as autopastback
isnotpostback is nothing but when user ex:back end 1 row is inserted is automatically is true is known as isnotpostback
will be genereted...

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

Name the validation control available in asp.net ?

1 Answers  


List down the sequence of methods called during the page load.

0 Answers  


How do I know asp.net mvc version? : Asp.Net MVC

0 Answers  


When do you set "<IDENTITY impersonate="true" />" ?

1 Answers  


If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?

0 Answers   DELL,






What are the different types of sessions in asp.net? Name them?

0 Answers  


Can you set the session out time manually?

0 Answers  


33) You create English, French, and German versions of your ASP.NET application. You have separate resource files for each language version. You need to deploy the appropriate resource file based on the language settings of the server. What should you do? A . Create an installer and set the Installer.Context property for each version of your application. B . Create an installer that has a launch condition to verify the locale settings. C . Create an installer that has a custom action to install only location-specific files. D . Create an installer that has an MsiConfigureProduct function to install the appropriate version.

2 Answers   Friedkin, ISH, Syntax, Syntax Softtech,


In asp.net, if a webpage seems too slow to load completely in th ebrowser. In this case what are the checkings or actions you will take to rectify the slowness or which are the factors related to this issue? How we can trace it?

3 Answers  


how many select state ments are used in stored procedure?

8 Answers   CSC,


What is the Difference between MVC And MVP design pattrens

0 Answers   Symphony,


What are Authentication mechanisms in .Net?

6 Answers   Accenture,


Categories