jrthor2
04-16-2003, 10:06 AM
I have the following code to get the url of my page:
function URL()
URL= "http://" & Request.serverVariables("SERVER_NAME") & _
Request.serverVariables("PATH_INFO")
End function
The problem is, is if I'm on a page where the url looks like this:
http://www.server.org/Members/index.asp?sortby=R&order=1&name=admin
It doesn't grab anything from the ? on. How can I get that info also?
Thanks!!
function URL()
URL= "http://" & Request.serverVariables("SERVER_NAME") & _
Request.serverVariables("PATH_INFO")
End function
The problem is, is if I'm on a page where the url looks like this:
http://www.server.org/Members/index.asp?sortby=R&order=1&name=admin
It doesn't grab anything from the ? on. How can I get that info also?
Thanks!!