从当前请求获取应用程序 url

发布于 2024-11-16 05:36:44 字数 284 浏览 2 评论 0原文

我正在编写 ac# 应用程序。

我正在访问一个页面,例如 http://dev.mysite.com/page.aspx

如何我从当前上下文中检索此 http://dev.mysite.com/

我想在创建时使用它url 在不同的环境中,因此需要从当前请求上下文中读取它。

I am writing a c# application.

I am accessing a page eg http://dev.mysite.com/page.aspx

How can I retrieve from the current context this http://dev.mysite.com/

I want to use this when creating url's in different environments so need to read it from the current request context.

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

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

发布评论

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

评论(2

花桑 2024-11-23 05:36:44
Uri uri = new Uri("http://dev.mysite.com/page.aspx");
string authority = uri.GetLeftPart(UriPartial.Authority);
// authority will equal to http://dev.mysite.com

或者,如果您位于此 page.aspx 中,则可以直接使用 Request.Url 属性:

string authority = Request.Url.GetLeftPart(UriPartial.Authority);
Uri uri = new Uri("http://dev.mysite.com/page.aspx");
string authority = uri.GetLeftPart(UriPartial.Authority);
// authority will equal to http://dev.mysite.com

or if you are inside this page.aspx you could directly use the Request.Url property:

string authority = Request.Url.GetLeftPart(UriPartial.Authority);
八巷 2024-11-23 05:36:44
string baseUrl = Request.Url.GetLeftPart(UriPartial.Authority);
string baseUrl = Request.Url.GetLeftPart(UriPartial.Authority);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文