如何从 HttpContext 获取 C# .Net 中的 URL 路径

问题描述 投票:0回答:5

我想获取除当前页面url之外的所有URL路径,例如:我的URL是http://www.MyIpAddress.com/red/green/default.aspx我想获取“http:仅 //www.MyIpAddress.com/red/green/”。我怎样才能得到。我正在做这样的事情

string sPath = new Uri(HttpContext.Current.Request.Url.AbsoluteUri).OriginalString; System.Web.HttpContext.Current.Request.Url.AbsolutePath;
            sPath = sPath.Replace("http://", "");
            System.IO.FileInfo oInfo = new System.IO.FileInfo(sPath);
            string sRet = oInfo.Name;
            Response.Write(sPath.Replace(sRet, ""));

它在新的 System.IO.FileInfo(sPath) 上显示异常,因为 sPath 包含“localhost/red/green/default.aspx”,表示“不支持给定路径的格式。”

c# asp.net .net url
5个回答
104
投票

主网址:http://localhost:8080/mysite/page.aspx?p1=1&p2=2

在C#中获取URL的不同部分。

Value of HttpContext.Current.Request.Url.Host
localhost

Value of HttpContext.Current.Request.Url.Authority
localhost:8080

Value of HttpContext.Current.Request.Url.AbsolutePath
/mysite/page.aspx

Value of HttpContext.Current.Request.ApplicationPath
/mysite

Value of HttpContext.Current.Request.Url.AbsoluteUri
http://localhost:8080/mysite/page.aspx?p1=1&p2=2

Value of HttpContext.Current.Request.RawUrl
/mysite/page.aspx?p1=1&p2=2

Value of HttpContext.Current.Request.Url.PathAndQuery
/mysite/page.aspx?p1=1&p2=2

12
投票

不要将其视为 URI 问题,而应将其视为字符串问题。然后就很方便了。

String originalPath = new Uri(HttpContext.Current.Request.Url.AbsoluteUri).OriginalString;
String parentDirectory = originalPath.Substring(0, originalPath.LastIndexOf("/"));

真的那么简单!

编辑添加缺少的括号。


3
投票

替换这个:

            string sRet = oInfo.Name;
            Response.Write(sPath.Replace(sRet, ""));

具有以下内容:

        string sRet = oInfo.Name;           
        int lastindex = sRet.LastIndexOf("/");
        sRet=sRet.Substring(0,lastindex)
        Response.Write(sPath.Replace(sRet, ""));

2
投票

用这个

string sPath = (HttpContext.Current.Request.Url).ToString();
sPath = sPath.Replace("http://", "");
var oInfo = new  System.IO.FileInfo(HttpContext.Current.Request.RawUrl);
string sRet = oInfo.Name;
Response.Write(sPath.Replace(sRet, ""));

0
投票

如果您只是想导航到网站上的另一个页面,这可能会满足您的需求,但如果您确实需要的话,它不会获得绝对路径。您可以在站点内导航,而无需使用绝对路径。

string loc = "";
loc = HttpContext.Current.Request.ApplicationPath + "/NewDestinationPage.aspx";
Response.Redirect(loc, true);

如果你确实需要绝对路径,你可以挑选部分并使用 Uri 类构建你需要的内容:

Uri myUri = new Uri(HttpContext.Current.Request.Url.AbsoluteUri)
myUri.Scheme
myUri.Host  // or DnsSafeHost
myUri.Port
myUri.GetLeftPart(UriPartial.Authority)  // etc.

关于 ASP.NET 路径主题的好文章

© www.soinside.com 2019 - 2024. All rights reserved.