Which property of page ensures that the Page is posted first time.

 Posted by vishalneeraj-24503 on 12/23/2013 | Category: ASP.NET Interview questions | Views: 2076 | Points: 40
Answer:

IsPostBack property ensures that page is posted first time.
First time this property be False.

We check this property on Page_Load event
as

protected void Page_Load(object sender, EventArgs e)

{
if (!IsPostBack)
{
}
}


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response