Classic ASP - Display the Current File Name
A nice tip from thescripts.com.
aPath = Split("/" & REquest.ServerVariables("PATH_INFO"), "/")
sFilename = aPath(UBound(aPath))
response.write(sFilename)
A nice tip from thescripts.com.
aPath = Split("/" & REquest.ServerVariables("PATH_INFO"), "/")
sFilename = aPath(UBound(aPath))
response.write(sFilename)
0 Comments:
Posta un commento
<< Home