Is there code in VBScript that does what javascript does to check page location:
top.location <> self.location
Printable View
Is there code in VBScript that does what javascript does to check page location:
top.location <> self.location
why do you want to use vbscript,
you can use html for this problem.
greetz Raage
With ASP its one of these : -
Request.ServerVariables("PATH_INFO")
Request.ServerVariables("SCRIPT_NAME")
Request.ServerVariables("URL")
I dont think VB Script has its own method. Use client side Javascript if you are just interacting with the user.