I wrote this in my asp page:
response.Write Server.MapPath(Request.ServerVariables("PATH_INFO" ))
I got this:
c:\inetpub\wwwroot\testupload\test1.asp
I want only until:
c:\inetpub\wwwroot\testupload\
I tried this:
response.Write Server.MapPath("/")
but got this instead:
c:\inetpub\wwwroot
So can anybody help?