define ispostback and give some examples
Answers were Sorted based on User's Feedback
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 |
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 |
Why do I get a syntax error when trying to declare a variable called checked?
How do I use the 'using' keyword with multiple objects?
Why is it important to override gethashcode when equals method is overridden?
What is the difference between static and private constructor?
What is difference between iqueryable and ienumerable in c#?
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?
datagridview using updata in windows c#
What is variable in c#?
What are the ways in which client can create object on server in cao model?
i want display a given number into Rupees Format Like Given number is : 156735 my Expected output is 1,56,735. how to display?
Why do we use interface in c#?
How many digits is a 32 bit number?