zoukankan      html  css  js  c++  java
  • .NET常用的应用程序根路径

    网上没有找到太合适的,自己写了一个,经过简单测试,满足各种情况

    代码
               #region 生成url应用程序绝对路径 (http://localhost:8080/website)
                
    string absPath = System.Web.HttpContext.Current.Request.Url.AbsolutePath;
                absPath = absPath.Substring(System.Web.HttpContext.Current.Request.ApplicationPath.Length);
                
    this._apppath = System.Web.HttpContext.Current.Request.Url.AbsoluteUri.Replace(absPath, "");
                
    this._apppath.TrimEnd('/');
                
    #endregion

                
    #region 生成应用程序硬盘物理路径(D:\wwwroot\website)
                
    this._physicalpath = System.Web.HttpContext.Current.Request.ServerVariables["APPL_PHYSICAL_PATH"].ToString().TrimEnd('\\');
                
    #endregion

                
    #region 生成url应用程序皮肤绝对路径(http://localhost:8080/website/App_Themes/green)
                System.Web.Configuration.PagesSection _ps = (System.Web.Configuration.PagesSection)System.Configuration.ConfigurationManager.GetSection("system.web/pages");
                
    this._themename = _ps.Theme;
                
    this._fullthemepath = string.Format("{0}/App_Themes/{1}"this._apppath, _ps.Theme).TrimEnd('/');
                
    #endregion


  • 相关阅读:
    sqoop常用命令三 ---- import导入 与export 覆盖更新,常见问题总结
    Sqoop 数据导出:全量、增量、更新
    idea 安装热部署插件
    Python学习之turtle绘图篇
    使用python自动画一只小猪佩奇(源码)
    Python turtle安装和使用教程
    PYCHARM三方库安装方法
    Impala编译部署-3
    SSLv3 SSLContext not available Tomcat
    SSLv3 SSLContext not available Tomcat
  • 原文地址:https://www.cnblogs.com/freeton/p/1664846.html
Copyright © 2011-2022 走看看