如何找出应用程序正在运行的 URL?

发布于 2025-01-07 06:19:46 字数 217 浏览 0 评论 0原文

我正在编写一个小型 ASP.NET MVC 应用程序。我需要知道应用程序正在哪个 URL 上运行(例如,它是我的开发盒、质量保证还是生产)。

原因是应用程序发出邀请,我想将收件人指向正确的框。

有没有办法用 ASP.NET MVC 来做到这一点?或者我必须将这些东西嵌入到 web.config 中吗?
PS 该应用程序在生产中在 IIS6 下运行,在其他地方在 II7 下运行。

I am writing a small ASP.NET MVC app. I need to know what URL the app is operating on (e.g. is it my dev box, qa or production).

The reason is that the app sends out invites and I'd like to point the recipient to the proper box.

Is there a way to do this with ASP.NET MVC? Or do i have to embed these things in the web.config?
P.S. The app is running under IIS6 in production and in II7 elsewhere.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

千笙结 2025-01-14 06:19:46

在 global.asax.cs 内部(除非您使用的是 vb),有一个方法 Register_Routes。该方法在 MVC 请求处理的一开始就被调用。这里可以剖析参数的路由。这里有一些有关路由的信息: http://blogs.msdn.com/b/simonince/archive/2011/02/02/asp-net-mvc-3-optional-parameter-routing-issue.aspx 否则,只需谷歌因为它是一个广泛的话题。您还可以在这个问题(How can I have asp.net side by side with php?)中找到答案,这对如何使用自定义控制器处理路由。

Inside of global.asax.cs (unless you are on vb) there is a method Register_Routes. This method gets called at the very beginning of the request handling by MVC. It is possible here to dissect the route for parameters. There is some information on routing here: http://blogs.msdn.com/b/simonince/archive/2011/02/02/asp-net-mvc-3-optional-parameter-routing-issue.aspx Otherwise, just google it as it is a broad topic. You may also find the answer in this question ( How can I have asp.net side by side with php? )helpful for how to handle routes with custom controllers.

极度宠爱 2025-01-14 06:19:46

您始终可以从 HttpContext.Current.Request 开始并查看当前 URL。如果您发现一个已知的字符串,您可以说它是在特定环境中出现的。例如 qa.someapp.com 包含“qa”。所以这是一个质量保证环境。

You can always start from HttpContext.Current.Request and have a look at the current URL. If you found a known string you could say its on a particular environment. E.g qa.someapp.com contains 'qa.' so it is a qa environment.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文