3
Reply

How can we identify that the Page is Post Back?

Kunal  Gautam

Kunal Gautam

11y
3.2k
0
Reply

    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