Clearly Explain the ispostback

Answers were Sorted based on User's Feedback



Clearly Explain the ispostback..

Answer / vikas

Usually used inside the Page_Load event handler, IsPostBack
checks if the page is being requested by client for the
first time or whether it is being sent as a result of a
postback(form submission). This help you change (or
maintain) the content on the page depending on the type of
request (fresh or postback).

Is This Answer Correct ?    22 Yes 0 No

Clearly Explain the ispostback..

Answer / kaushal

Ispostback (page.ispostback()) is a method which represents
whether the page state of page is postback or first time
loaded. If the page is postback it returns True and False
for the First Time loaded

Is This Answer Correct ?    13 Yes 2 No

Clearly Explain the ispostback..

Answer / raj

Ispostback is a method which represents whether the page
state of page is postback or first time loaded or it’s a
round robin process. If the page is postback it returns
True and False for the First Time loaded. The result will
come as Binary 0,1.

Is This Answer Correct ?    7 Yes 1 No

Clearly Explain the ispostback..

Answer / rohit

hey one mistake is there in place of before thr is after

Is This Answer Correct ?    6 Yes 2 No

Clearly Explain the ispostback..

Answer / rameshp

Post back means all form fields and other controls can be
declared to run on the server, and the server simply posts
the page back to itself and performs all the validation,
display and actions.

Is This Answer Correct ?    6 Yes 2 No

Clearly Explain the ispostback..

Answer / deepak

this indicate all action will perform before page will be
post back like
if(ispostback)
{
}

Is This Answer Correct ?    5 Yes 5 No

Post New Answer

More ASP.NET Interview Questions

How do we ensure view state has not tampered?

0 Answers  


Explain different types of validators in asp.net?

0 Answers  


What is the difference between session and application?

0 Answers  


What are the different types of cookies in asp.net?

0 Answers  


How do cookies work?

0 Answers  






how to stop cookie in particular page using asp.net

2 Answers   CGI,


How to find the client browser type ?

4 Answers   AQA, Cognizant, Satyam,


How we can bind textbox,listbox and datagrid to sql server database in asp.net using visualstudio.net language (vb.net)?

2 Answers   rocsearch,


What are ASP.NET Web Forms? How is this technology different than what is available though ASP (1.0-3.0)?

1 Answers  


How can you enable impersonation in the web.config file?

0 Answers  


How does u get record no from 5 to 15 from a dataset of 100 records?

0 Answers  


How do you create master pages in asp.net?

2 Answers   Wipro,


Categories