How can we identify that the Page is Post Back?
Kunal Gautam
you can use IsPostBack at PageLoad() event if you want to check at load time
if(!IsPostBack) { // code place here }Its best part of C#
using the Ispostback Property we can identify the page is postback or not Like. Ispostback = True/False