Page Lifecycle ASP.Net Tutorial

<%@ Page Language="vb" %>

   
      Displaying the Request.FilePath property in ASP.NET
   

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