anyone have any idea why
request.servervariables("Script_name")
is returning path and script
ex file test.asp is in c:\test
if I do
dim scriptName
scriptName=request.servervariables("Script_name")
response.write scriptName
It returns /test/test.asp where i am just looking for test.asp.
Any Clues? I can write code to manipulate the variable to return the result i want, but i just want to see if there is a way to just get the script name, in this case it would be test.asp
thanks in advance
request.servervariables("Script_name")
is returning path and script
ex file test.asp is in c:\test
if I do
dim scriptName
scriptName=request.servervariables("Script_name")
response.write scriptName
It returns /test/test.asp where i am just looking for test.asp.
Any Clues? I can write code to manipulate the variable to return the result i want, but i just want to see if there is a way to just get the script name, in this case it would be test.asp
thanks in advance