C# / .NET 在类中使用Server.MapPath

直接在类中使用 Server.MapPath 会出现错误,这是由于类中不能直接使用 System.Web.UI.Page 的非静态函数造成的。解决方法有两种:

方法一、使类继承System.Web.UI.Page类

class CFoo : System.Web.UI.Page
在使用方法一时请注意:C#中, 派生类只能从一个类中继承。换句话说,如果该类已经继承了其他类,则不能再继承 Page 类,只能使用第二种方法。

方法二、利用上下文直接使用

System.Web.HttpContext.Current.Server.MapPath

方法二中,System.Web.HttpContext.Current 中 System.Web 是名称空间,HttpContext.Current 是类,

    HttpContext 封装有关个别 HTTP 请求的所有 HTTP 特定的信息,Current 表示当前 HTTP 请求。

    如果我们引入名称空间 System.Web 了,则可以省略为 HttpContext.Current.Server.MapPath。

其实这里并不是只限于 Server.MapPath,还可以这样使用 Server 类的其它属性与方法,比如:Server.HtmlEncode(注意大小写)。

 

也可以这样使用:

string abso_path = HttpContext.Current.Server.MapPath(commonPath);      //带有服务器信息的path

然后再其他地方直接调用变量 abso_path 即可,尤其是在类中多处都要用到该地址时。

还可以在辅助器类中定义如下字段:

private string _path = HttpContext.Current.Server.MapPath("/");     //返回应用程序根目录所在的物理文件路径

扩展:

    经实践发现,有的时候即使引用了命名空间,也无法正常使用 “HttpContext.Current”,也即无法使用 “HttpContext.Current.Server.MapPath”,

  于是,我又找到了另一种方法:

    首先,引用命名空间 “using System.IO”,

    然后,使用 Path.Combine(HttpRuntime.AppDomainAppPath, "index.html") 的形式即可得到同样的效果(而且这种方式更安全)。

    (扩展参考于:https://www.cnblogs.com/fish-li/archive/2013/04/06/3002940.html )

转载于:https://www.cnblogs.com/zhangchaoran/p/7722006.html

你可能感兴趣的:(c#,ui)