标签: c# asp.net-mvc hosting
我有一个MVC应用程序;在开发机器中,调试路径类似于localhost:。
localhost:
我可以检查我的服务器所拥有的请求的URL是localhost还是托管在服务器上的应用程序意味着它们在线。
如何才能发现我的应用程序是在开发机器上?
答案 0 :(得分:0)
HttpRequest.IsLocal
答案 1 :(得分:0)
检查Request.Url.Hostname和Request.Url.Port 这将告诉您用户请求的URL。
Request.Url.Hostname
Request.Url.Port
或者,请检查Environment.MachineName。
Environment.MachineName