Click here to Skip to main content
15,905,612 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all
i want to know how to check post back in java script , i have written this code but the alert didn't appear yes or no


JavaScript
var isPostBack = "<%Response.Write(Page.IsPostBack);%>";
       alert(isPostBack);



so, any help please

Thanks
Posted

you can also try this.

var itsPostBack = <%= Page.IsPostBack ? "true" : "false" %>;
alert(itsPostBack);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900