zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    Hadoop及HIVE学习宝典收集
    【iOS知识学习】_int、NSInteger、NSUInteger、NSNumber的差别和联系
    mysql 连接慢的问题
    CF704D Captain America
    常用流
    流的概念及基本分类
    是否可从一个static方法内发出对非static方法的调用?
    hashCode方法的作用?
    ClassLoader如何加载class?
    class.forName的作用?
  • 原文地址:https://www.cnblogs.com/xqdotnet/p/6745069.html
Copyright © 2011-2022 走看看