zoukankan      html  css  js  c++  java
  • Asp.NET获取文件及其路径

    Asp.NET获取文件及其路径
    【相对路径】
    Request.ApplicationPath/src
    Path.GetDirectoryName(HttpContext.Current.Request.RawUrl )//src//Xiaoshe
    Context.Request.Path/src/Xiaoshe/Xiaoshe_New.aspx
    Context.Request.CurrentExecutionFilePath/src/Xiaoshe/Xiaoshe_New.aspx
    Context.Request.FilePath/src/Xiaoshe/Xiaoshe_New.aspx
    HttpContext.Current.Request.RawUrl /src/Xiaoshe/Xiaoshe_New.aspx
    HttpContext.Current.Request.Urlhttp://localhost:1344/src/Xiaoshe/Xiaoshe_New.aspx
    TemplateSourceDirectory/src/Controls
    【绝对路径】
    Server.MapPath("./") E://Wonsoft//Pro2//src//Xiaoshe//
    Server.MapPath("") E://Wonsoft//Pro2//src//Xiaoshe
    Context.Request.PhysicalApplicationPathE://Wonsoft//Pro2//src//
    Context.Request.PhysicalPath E://Wonsoft//Pro2//src//Xiaoshe//Xiaoshe_New.aspx
    MapPathSecure(TemplateSourceDirectory)E://Wonsoft//Pro2//src//Controls string
    【其他】
    Control.ResolveClientUrl(string relativeUrl)
    Control.ResolveUrl(string relativeUrl)
  • 相关阅读:
    JAVA-基础-接口
    JAVA-基础-抽象类
    JAVA-基础-多态
    JAVA-基础-继承
    JAVA-基础-封装
    JAVA-基础-面向对象
    JAVA-基础-ArrayList集合
    CenOS 6.5下 mysql自动备份
    Cenos 6.5上的subverion的yum配置笔记
    [CF628D]Magic Numbers 题解
  • 原文地址:https://www.cnblogs.com/zhxshseu/p/5292234.html
Copyright © 2011-2022 走看看