-
In JavaScript I can reload a page with something like
parent.obj.location.href = "x.asp?parm=1"
What is the analogous construction in VBScript? Sorry for this seemingly trivial question but I'm operating w/o any docs at the moment. Any help would be appreciated.
-
Yes!
parent.location.href = 'x.asp?parm=1';
or
window.location.href = 'x.asp?parm=1';
should work!
I don't know what the VBScipt equivalent is.
If I were you I wouldn't bother with client-side vb script
-
The VB script equivalent is
response.redirect
Ian
-
Ian, response.redirect is serverside VBscript only isn't it?
I think Zukie wanted the client-side version
-
Sorry Mark you are correct (getting my languages mixed up), what you actually want is just
Location.href = ...
same as in java
Of course it only works in IE
Ian
-
Thank you all for you help.