导入了system.web,我没有看到server.mapPath?

发布于 2024-08-26 02:40:35 字数 147 浏览 2 评论 0原文

我将 system.web 导入到我的类库项目中。

试图找到:

system.web.httpserverutility.server.mappath

但我没有得到智能感知中的方法?

它是 .net 2.0 版本。

I imported system.web into my class lib project.

Trying to find:

system.web.httpserverutility.server.mappath

But I dont' get the method in intellisense?

It is a .net 2.0 build.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

〆凄凉。 2024-09-02 02:40:35

MapPath 是一个实例方法;您只能在 HttpServerUtility实例上调用它。
如果您知道您的代码只会在 HTTP 请求期间被调用,则可以调用 HttpContext.Current.Server.MapPath。

否则,请调用 VitualPathUtility.ToAbsolute

MapPath is an instance method; you can only call it on an instance of HttpServerUtility.
If you know that your code will only be called during an HTTP request, you can call HttpContext.Current.Server.MapPath.

Otherwise, call VitualPathUtility.ToAbsolute.

千年*琉璃梦 2024-09-02 02:40:35

该方法可通过 System.Web.HttpContext.Current.Server 对象访问。只需设置对 System.Web.HttpContext.Current.Server 的引用并像平常一样调用该方法即可。

var server = HttpContext.Current.Server;
server.MapPath(SOME_VIRTUAL_PATH);

The method is accessible via the System.Web.HttpContext.Current.Server object. Just set a reference to System.Web.HttpContext.Current.Server and call the method like normal.

var server = HttpContext.Current.Server;
server.MapPath(SOME_VIRTUAL_PATH);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文