<%@ Page Language="vb" %> <html> <head> <title>Displaying the Request.FilePath property in ASP.NET</title> </head> <body> <% Dim fp As String fp = Request.FilePath Response.Write("The virtual path of the current request is: <strong>" & fp & "</strong>") %> </body> </html>