谁能帮助我在获得ASP当前工作页面的URL。NET在c# ?


当前回答

只是分享这是我的解决方案,感谢Canavar的帖子。

如果你有这样的东西:

"http://localhost:1234/Default.aspx?un=asdf&somethingelse=fdsa"

或者像这样:

"https://www.something.com/index.html?a=123&b=4567"

你只需要用户输入的部分,这样就可以了:

String strPathAndQuery = HttpContext.Current.Request.Url.PathAndQuery;
String strUrl = HttpContext.Current.Request.Url.AbsoluteUri.Replace(strPathAndQuery, "/");

这将导致以下结果:

"http://localhost:1234/"
"https://www.something.com/"

其他回答

试试这个:

string url = HttpContext.Current.Request.Url.AbsoluteUri;
// http://localhost:1302/TESTERS/Default6.aspx

string path = HttpContext.Current.Request.Url.AbsolutePath;
// /TESTERS/Default6.aspx

string host = HttpContext.Current.Request.Url.Host;
// localhost

只是分享这是我的解决方案,感谢Canavar的帖子。

如果你有这样的东西:

"http://localhost:1234/Default.aspx?un=asdf&somethingelse=fdsa"

或者像这样:

"https://www.something.com/index.html?a=123&b=4567"

你只需要用户输入的部分,这样就可以了:

String strPathAndQuery = HttpContext.Current.Request.Url.PathAndQuery;
String strUrl = HttpContext.Current.Request.Url.AbsoluteUri.Replace(strPathAndQuery, "/");

这将导致以下结果:

"http://localhost:1234/"
"https://www.something.com/"

我想返回绝对路径就足够了。

 Path.GetFileName( Request.Url.AbsolutePath )

使用先;

如果您只想要http://和第一个斜杠之间的部分

string url = Request.Url.Host;

如果从此页调用将返回stackoverflow.com

下面是完整的分析

给那些需要全局路径/url的人一个提示。asax文件;

如果你需要全局运行。asax > Application_Start和你的应用池模式是集成的,然后你会收到以下错误:

请求在此上下文异常中不可用 Application_Start。

在这种情况下,你需要使用这个:

System.Web.HttpRuntime.AppDomainAppVirtualPath

希望能帮助别人。