私は次のパスを持っています:
-http://localhost/portal/reportview.aspx
しかし、最初の3つの部分を取得する必要があります。
-http:// localhost / portal /
私はHttpContext.Current.Request.Url.GetLeftPart();
運が悪かった。
これを試して;
string s = "http://localhost/portal/reportview.aspx";
string y = string.Format("{0}//{2}/{3}/",s.Split('/'));
部分文字列を使用できます。
string str = "http://localhost/portal/reportview.aspx";
string left = str.Substring(0, str.LastIndexOf("/"));