Overview
<% 'the constants.inc include file contains a constant url to transfer the request. 'in this case the url is a 404 error page where the program logic resides 'get the url being requested and assign it to a session variable. when the page is transferred 'to the 404, the url variable is still available to process strUrl = LCase(Request.ServerVariables("URL")) session("REQUEST_URL") = strUrl 'transfer the request to the 404 error page to process Server.Transfer(strController) 'response.Write(strController) %>
Related Topics
The sub-categories under this topic:

