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 int.parse and int.tryparse methods?
Define method overloading in c#?
What are the types of constructors?
What debugging tools come with the .NET ssSDK?
How we convert private assembly into public assembly?
How does foreach loop work in c#?
Explain inheritance in c#?
How can we sort the elements of the array in descending order?
Define c# and list the features.
What are the the three types of DAO ?
What is the delegate in c#?
Why abstraction is used in c#?