Displaying the Request.FilePath property in ASP.NET : Path « Request « ASP.Net






Displaying the Request.FilePath property in ASP.NET

<%@ Page Language="vb" %>
<html>
   <head>
      <title>Displaying the Request.FilePath property in ASP.NET</title>
   </head>
<body>

<p>

<%
   Dim fp As String
   fp = Request.FilePath
   Response.Write("The virtual path of the current request is: <strong>" & fp & "</strong>")
%>

</p>

</body>
</html>
           
       








Related examples in the same category

1.Request.PhysicalApplicationPath (C#)
2.Displaying additional path information in ASP.NET