程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> Uri各個屬性取值測試,Uri屬性取值測試

Uri各個屬性取值測試,Uri屬性取值測試

編輯:C#入門知識

Uri各個屬性取值測試,Uri屬性取值測試


asp.net代碼:

Uri h_uri = new Uri("http://hovertree.com/tiku/bjaf/3ntux9r9.htm?hewenqi#hewenqipl?ddd#hovertree");
Response.Write("<br />Host:" + h_uri.Host);
Response.Write("<br />AbsolutePath:" + h_uri.AbsolutePath);
Response.Write("<br />AbsoluteUri:" + h_uri.AbsoluteUri);
Response.Write("<br />DnsSafeHost:" + h_uri.DnsSafeHost);
Response.Write("<br />Fragment:" + h_uri.Fragment);
Response.Write("<br />HostNameType:" + h_uri.HostNameType);
Response.Write("<br />IsAbsoluteUri:" + h_uri.IsAbsoluteUri.ToString());
Response.Write("<br />Segments:" + h_uri.Segments);
Response.Write("<br />UserInfo:" + h_uri.UserInfo);
Response.Write("<br />Query:" + h_uri.Query);
Response.Write("<br />PathAndQuery:" + h_uri.PathAndQuery);
Response.Write("<br />OriginalString:" + h_uri.OriginalString);
Response.Write("<br />LocalPath:" + h_uri.LocalPath);
Response.Write("<br />Authority:" + h_uri.Authority);
Response.Write("<br />DnsSafeHost:" + h_uri.DnsSafeHost);

效果:

Host:hovertree.com
AbsolutePath:/tiku/bjaf/3ntux9r9.htm
AbsoluteUri:http://hovertree.com/tiku/bjaf/3ntux9r9.htm?hewenqi#hewenqipl?ddd%23hovertree
DnsSafeHost:hovertree.com
Fragment:#hewenqipl?ddd%23hovertree
HostNameType:Dns
IsAbsoluteUri:True
Segments:System.String[]
UserInfo:
Query:?hewenqi
PathAndQuery:/tiku/bjaf/3ntux9r9.htm?hewenqi
OriginalString:http://hovertree.com/tiku/bjaf/3ntux9r9.htm?hewenqi#hewenqipl?ddd#hovertree
LocalPath:/tiku/bjaf/3ntux9r9.htm
Authority:hovertree.com
DnsSafeHost:hovertree.com

轉自:http://hovertree.com/h/bjaf/le50giqm.htm

參考:http://hovertree.com/h/bjaf/1ggypq09.htm#hewenqipl

winform http://www.cnblogs.com/sosoft/p/cspiano.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved