Getting Full URL/Path with ASP


/ Published in: ASP
Save to your folder(s)

One thing that always bothered me about Classic ASP is that there isn't an easy way to get the entire url. So I devised a function that will get the full path
including the query string.


Copy this code and paste it in your HTML
  1. function GetPath()
  2. query_string = request.ServerVariables("QUERY_STRING")
  3. if query_string <> "" then
  4. query_string = "?" & query_string
  5. end if
  6.  
  7. GetPath = "http://" & request.ServerVariables("SERVER_NAME") & request.ServerVariables("URL") & query_string
  8. end function

URL: http://www.nealgrosskopf.com/tech/thread.asp?pid=13

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.