5
Reply

what is the use of IsPostBack Property in ASP.Net.

purosotam gupta

purosotam gupta

Apr 14, 2014
9.9k
0

    Postback is actually sending all the information from client to web server, then web server process all those contents and returns back to the client. Most of the time ASP control will cause a post back (e. g. buttonclick) but some don't unless you tell them to do In certain events ( Listbox Index Changed,RadioButton Checked etc..) in an ASP.NET page upon which a PostBack might be needed.

    Sagar Vaishnav
    October 18, 2016
    0

    using of the IsPostback Property we can check that page is Postback or not if page postback property is true then page is being post back if property is false then page is not postback

    Mahaveer Yadav
    April 25, 2014
    0

    http://msdn.microsoft.com/en-us/library/system.web.ui.page.ispostback%28v=vs.110%29.aspx

    Khan Abrar Ahmed
    April 16, 2014
    0

    IsPostBack is used to check if the page is responding to a post back event, like clicking a button. So, lets say you have some textboxes for users to change some data and then click a button to submit the data. In the Page_Load you populate the textboxes with data, and the button click event captures that data and saves it.

    Munesh Sharma
    April 15, 2014
    0

    IsPostBack is a Boolean property of a page when is set (=true) when a page is first loaded. Thus, the first time that the page loads the IsPostBack flag is false and for subsequent PostBacks, it is true. An important point is that each time a PostBack occurs, the entire page including the Page_Load is ‘posted back‘ and executed.

    purosotam gupta
    April 14, 2014
    0