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 the difference between struct and class c#?
What?s the difference between // comments, /* */ comments and /// comments?
What is console write in c#?
What is null character in string?
What is difference between property and variable in c#?
Is array value type in c#?
What does console writeline do?
What is the difference between hashtable and dictionary?
What is typeof undefined?
Explain about Oops concept
Why c# is called type safe language?
What does return do in unity?