Basename($PHP_SELF) In ASP?
This is question regarding ASP. I learn this from one of the thread that we can display the PATH_INFO:
[VBS]Response.Write Request.ServerVariables("PATH_INFO") [/VBS] What I get is /mypath/myfilename.asp.
My question is that "How can I only retrieve the myfilename.asp, and not including the path?". Yes like basename($PHP_SELF). [VBS]Is there something like
Response.Write Request.ServerVariables("Filename") [/VBS]