• 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
  • 相关阅读:
    Q群
    shell脚本写host类型executable
    Oracle EBS 基于Host(主机文件)并发程序的开发
    ORALCE存储之ROWID
    HOW TO LINK THE TRANSACTION_SOURCE_ID TO TRANSACTION_SOURCE_TYPE_ID
    查找Form文件
    ORACLE column_type_id与实际type的对应关系
    OAF jar包引用产生错误
    计算Trial Balance的新方法(转)
    如何访问到XtreemHost上的站点?
  • 原文地址:https://www.cnblogs.com/xqdotnet/p/6745069.html
Copyright © 2020-2023  润新知