In .NET, is there any way that I can tell from the HttpContext or HttpApplication that a particular request is the result of a Server.Transfer() rather than a client-initiated request?
In .NET, is there any way that I can tell from the HttpContext or
Share
You can test Request.IsLocal to see if the request was from the local computer. Obviously, you will need to test this from a different computer to verify it is working.