<%@ Page Language="vb" %>
Showing ServerVariable values via the ServerVariables Collection in ASP.NET
<%
Dim VirPath, PhysPath, BasePath As String
Dim BoolCross As Boolean = True
VirPath = "/QuickStart"
BasePath = ""
Response.Write(Request.MapPath(VirPath, BasePath, BoolCross))
%>