Date:  04/26/2011 03:06:46 PM Msg ID:  004275
From:  Ali Koumaiha Thread:  004274
Subject:  Re: Passed URL..
Nevermind, i figured it out.. sorry
 lcURL = request.servervariables("SERVER_NAME") + Request.ServerVariables("URL")
 lcParam = request.querystring()
 if not empty(lcParam)
  lcURL = lcURL + "?" + lcParam
 endif
 
 response.write(lcURL)
Sent by Ali Koumaiha on 04/26/2011 01:34:55 PM:
i am trying to find out which request variable i can use to obtain the current passed url.

example: if someone went to this site:
http://www.somesite.com/Script.fwx?Index=1&Start=20&SomeArray=10

so, in my fwx script:
i want to know they had this in the URL:
lcURL = "/Scripts.fwx?Index1&Start=20&SomeArray=10"