There is one ASP application for each virtual server, which has a root path of the format /content/virtualServerName.
For example, a hosting account with the StartupHost+ package for the domain mydomain.com would have the document root /content/StartupHostPlus/m/y/mydomain.com/web and the ASP application root /content/StartupHostPlus. Therefore, the path to the web folder relative to the ASP application would be /m/y/mydomain.com/web.
To view the full path to your current working directory, you can use:
<%
' **********************************
' ***** SHOW CURRENT DIRECTORY *****
' **********************************
Response.Write(Request.ServerVariables("PATH_TRANSLATED"))
%>This will work under both Linux and Windows hosting packages


