The Page class has a nice little function called ResolveURL. Can I get to
something like that in global.asax, ar at least the originating page within
any particular event?
Paul
ScottStoecker@excite.com - 21 Oct 2005 19:52 GMT
You could try something like this, which will give you the page path:
Sub Application_BeginRequest(ByVal sender As Object, ByVal e As
EventArgs)
' Fires at the beginning of each request
HttpContext.Current.Response.Write(HttpContext.Current.Request.Path())
End Sub