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 struct and class c#?

0 Answers  


What?s the difference between // comments, /* */ comments and /// comments?

2 Answers   Intel, Visual Soft,


What is console write in c#?

0 Answers  


What is null character in string?

0 Answers  


What is difference between property and variable in c#?

0 Answers  


Is array value type in c#?

0 Answers  


What does console writeline do?

0 Answers  


What is the difference between hashtable and dictionary?

0 Answers  


What is typeof undefined?

0 Answers  


Explain about Oops concept

0 Answers   Digital GlobalSoft,


Why c# is called type safe language?

0 Answers  


What does return do in unity?

0 Answers  


Categories