Find out if request from localhost in Global.Asax
- by Alex
Hello,
HttpContext.Current.Request.IsLocal is not available in Global.Asax (Request is not available in the context).
How else could I safely determine if my ASP.NET MVC application is started locally or not?
Thank you!