Hi
What is the use of ispostback in ASP.NET using C#
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pankaj RanaPosted Dec 12, 2011, 3:23 AM
IsPostback property of a page is use to check If Page is loading first time or
loading due to events generated by the controls on that page.
Satyapriya NayakPosted Dec 9, 2011, 4:42 AM
ispostback property
Gets a value that indicates whether the page is being rendered for the first time or is being loaded in response to a postback.
Refer
http://www.codeproject.com/KB/aspnet/IsPostBack.aspx
http://msdn.microsoft.com/en-us/library/system.web.ui.page.ispostback.aspx
Thanks