does any one now of any way to read a querystring from the clients side?
thanks
Printable View
does any one now of any way to read a querystring from the clients side?
thanks
Is this what you are looking for?
VB Code:
<script language="JavaScript"> document.writeln("Current QueryString = <b>" + location.search + "</b>") document.writeln("<br><a href='test.htm?test=testing123'>Get Search</a>") </script>
BTW...
I do not think that IE 4.x or lower will store the querystring when operation locally. Netscape 4.x and better and IE 5.x and better don't seem to have that issue however.
Let me know if you have any other questions.
cheers thas exactly what i was looking for
thanks
No problem.