Showing ServerVariable values via the ServerVariables Collection in ASP.NET : Map Path « Server « ASP.Net






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

1.MapPath(file) (VB.net)
2.Use map path (VB.net)