确定 ASP.NET 应用程序是否在本地运行 [英] Determine if ASP.NET application is running locally

查看:132
本文介绍了确定 ASP.NET 应用程序是否在本地运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I want to know if there is a recommended way of determining if an asp application is running locally. At the moment I use the Request object and do a string search for localhost or 127.0.0.1 on the server variable but this has several limitations. The biggest one being that the Request object is not always available when I need it.

解决方案

See HttpRequest.IsLocal

bool isLocal = HttpContext.Current.Request.IsLocal;

这篇关于确定 ASP.NET 应用程序是否在本地运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆