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