Mega Code Archive

 
Categories / ASP.Net Tutorial / Page Lifecycle
 

Displaying additional path information in ASP NET

<%@ Page Language="vb" %> <html>    <head>       <title>Displaying additional path information in ASP.NET</title>    </head> <body> <%    Response.Write("File Path = " & Request.FilePath & "<br>")    Response.Write("Path = " & Request.Path & "<br>")    Response.Write("Additional Path Info = " & Request.PathInfo & "<br>")    Response.Write("Physical Application Path = " & Request.PhysicalApplicationPath & "<br>")    Response.Write("Physical Path = " & Request.PhysicalPath) %> </body> </html>