However if you would like to execute it only once during the first postback, then here's how to do so:
Copy this code in the <head> of your MasterPage
<script type="text/javascript">
function invokeMeMaster() {
var chkPostBack = '<%= Page.IsPostBack ? "true" : "false" %>';
if (chkPostBack == 'false') {
alert('Only the first time');
}
}
window.onload = function() { invokeMeMaster(); };
</script>
The code determines if there is a postback in Javascript and then executes code based on the result. Hence the alert popup is shown only once.
You can several other tips related to calling JavaScript in Master/Content Pages over here:
Calling JavaScript from ASP.NET Master Page and Content Pages - Part I
Calling JavaScript from ASP.NET Master Page and Content Pages - Part II
This throws and error. BC30037: Character is not valid. I think it has something to do with the angle brackets.
ReplyDeletePlease post the entire code over here and I will have a look at it.
ReplyDeleteHow in PHP?
ReplyDeleteThis site prevents the posting of any tags other than bold, italics or link.
ReplyDeleteBut if you create a simple aspx page and add your suggested javascript you will see that it returns a
"Compiler Error Message: BC30037: Character is not valid."
Put simply the .net 2 server doesn't like
var chkPostBack = '<%= Page.IsPostBack ? "true" : "false" %>';