导入了system.web,我没有看到server.mapPath?
我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MapPath
是一个实例方法;您只能在HttpServerUtility
的实例上调用它。如果您知道您的代码只会在 HTTP 请求期间被调用,则可以调用 HttpContext.Current.Server.MapPath。
否则,请调用
VitualPathUtility.ToAbsolute
。MapPath
is an instance method; you can only call it on an instance ofHttpServerUtility
.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
.该方法可通过 System.Web.HttpContext.Current.Server 对象访问。只需设置对 System.Web.HttpContext.Current.Server 的引用并像平常一样调用该方法即可。
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.