从当前请求获取应用程序 url
我正在编写 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者,如果您位于此
page.aspx
中,则可以直接使用Request.Url
属性:or if you are inside this
page.aspx
you could directly use theRequest.Url
property: