A
ajfish
Hi,
I have a web form with smart navigation turned on. the html has an
onload event which calls a javascript function and the contents of this
function are dynamically generated on the server like this:
function onload() {
<% if (some_condition) { %>
do_some_javascript();
<% } %>
}
the "some condition" is initially false but may be set to true after a
postback.
For one particular user, after doing a postback, the javascript does
not get executed, so it's as if either the onload isn't firing at all
or the javascript function that's being run is the old one that was
generated before the postback.
the strange thing is that for most users everything works fine. the
user that has the problem is using the latest IE on XP SP2 - the same
combination as many other users. I am pretty sure it's not some popup
blocker or other security filter because if I disable smart navigation
it works. I can't afford to disable smart navigation on this form for
the sake of one user though.
anyone have any ideas what might be causing this?
Andy
I have a web form with smart navigation turned on. the html has an
onload event which calls a javascript function and the contents of this
function are dynamically generated on the server like this:
function onload() {
<% if (some_condition) { %>
do_some_javascript();
<% } %>
}
the "some condition" is initially false but may be set to true after a
postback.
For one particular user, after doing a postback, the javascript does
not get executed, so it's as if either the onload isn't firing at all
or the javascript function that's being run is the old one that was
generated before the postback.
the strange thing is that for most users everything works fine. the
user that has the problem is using the latest IE on XP SP2 - the same
combination as many other users. I am pretty sure it's not some popup
blocker or other security filter because if I disable smart navigation
it works. I can't afford to disable smart navigation on this form for
the sake of one user though.
anyone have any ideas what might be causing this?
Andy