Interview Question
Qus: What is Ispostback? When we will use Not Ispostback?
IsPostBack is a property of the asp.net page that tells whether or not the page is on its initial load or if a user has perform a button click on your web page that has caused the page to post back to itself.
We use Not Ispostback to check if it is not a postback but the initial loading if the asp.net page. If page postback property is true then page is being post back and if property is false then page is not postback.
Answers (2)
We use Not Ispostback to check if it is not a postback but the initial loading if the asp.net page. If page postback property is true then page is being post back and if property is false then page is not postback.