Page Lifecycle ASP.Net Tutorial

<%@ Page Language="vb" %>

   
      Displaying additional path information in ASP.NET
   

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