首页 > 代码库 > Uri各个属性取值测试
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
Uri各个属性取值测试
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。