Mega Code Archive

 
Categories / ASP.Net / Request
 

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>