define ispostback and give some examples

Answers were Sorted based on User's Feedback



define ispostback and give some examples ..

Answer / khyati

When the page is executed for the first time this method
will return the value TRUE else FALSE

IsPostBack returns bool value and returns TRUE only for the
first time execution/loading of the page

Is This Answer Correct ?    13 Yes 0 No

define ispostback and give some examples ..

Answer / vasanth

if(page.ispostback)
{
//Executed this code when page is posted back from the server
}
else
{
//Executed this code when page is posted for the first time
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Why do I get a syntax error when trying to declare a variable called checked?

0 Answers  


How do I use the 'using' keyword with multiple objects?

0 Answers  


Why is it important to override gethashcode when equals method is overridden?

0 Answers  


What is the difference between static and private constructor?

0 Answers  


What is difference between iqueryable and ienumerable in c#?

0 Answers  


You have got 1 million parking slots. At a time a parking slot can be free or not. To get next slot easily which data structure to implement?

0 Answers  


datagridview using updata in windows c#

1 Answers  


What is variable in c#?

0 Answers  


What are the ways in which client can create object on server in cao model?

0 Answers  


i want display a given number into Rupees Format Like Given number is : 156735 my Expected output is 1,56,735. how to display?

6 Answers  


Why do we use interface in c#?

0 Answers  


How many digits is a 32 bit number?

0 Answers  


Categories