Displaying additional path information in ASP.NET : Path « Request « ASP.Net






Displaying additional path information in ASP.NET

<%@ Page Language="vb" %>
<html>
   <head>
      <title>Displaying additional path information in ASP.NET</title>
   </head>
<body>

<p>

<%
   Response.Write("File Path = " & Request.FilePath & "<br>")
   Response.Write("Path = " & Request.Path & "<br>")
   Response.Write("Additional Path Info = " & Request.PathInfo & "<br>")
   Response.Write("Physical Application Path = " & Request.PhysicalApplicationPath & "<br>")
   Response.Write("Physical Path = " & Request.PhysicalPath)
%>

</p>

</body>
</html>
           
       








Related examples in the same category

1.Request.PhysicalApplicationPath (C#)
2.Displaying the Request.FilePath property in ASP.NET