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 |
What is option parameter in C#?
what is the difference between interface and multiple interface?
what is inheritance and an example in vb.net and c# of when you might use it?
What is the use of multicast delegate while methods of multicast delegate do not execute in a order?
How to Show Message box in Metro Style App?
Why to use “using” in c#?
What is difference between web and window application?
Difference between C++ and C#.net
19 Answers Google, TCS, Wipro,
Can we have multiple constructors in a class c#?
What is difference between event and delegate in c#?
What?s the difference between the System.Array.CopyTo() and System.Array.Clone()?
Can we declare private class in c#?