Root Function:

The Root function returns a string representing the root folder of the server.

Syntax:
string = Root
Example Usage:
<%
Dim strRoot
strRoot = Root
%>
ASP Source Code:
<%
Private Function Root()
	Root = Server.Mappath("/")
End Function
%>