Good day !
Let say I am in a page of a website, may be http://www.abc.com/def.asp
How can I get the string of the filename, which is "def.asp" in this case in ASP ?
Thanks a lot ! ;)
Good day !
Let say I am in a page of a website, may be http://www.abc.com/def.asp
How can I get the string of the filename, which is "def.asp" in this case in ASP ?
Thanks a lot ! ;)
Use Request.ServerVariables("SCRIPT_NAME") and get everything after the last "/" in the string.