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

What is the difference between int.parse and int.tryparse methods?

0 Answers  


Define method overloading in c#?

0 Answers  


What are the types of constructors?

0 Answers  


What debugging tools come with the .NET ssSDK?

0 Answers   Siebel,


How we convert private assembly into public assembly?

0 Answers   Wipro,






How does foreach loop work in c#?

0 Answers  


Explain inheritance in c#?

0 Answers  


How can we sort the elements of the array in descending order?

0 Answers  


Define c# and list the features.

0 Answers  


What are the the three types of DAO ?

1 Answers  


What is the delegate in c#?

0 Answers  


Why abstraction is used in c#?

0 Answers  


Categories