首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET >

Server.MapPath路径设置

2014-01-28 
string path Server.MapPath(/MyWebSite)Server.MapPath路径设置有没有问题?------解决方法----------

string path = Server.MapPath("/MyWebSite");

Server.MapPath路径设置有没有问题?

------解决方法--------------------------------------------------------
("\MyWebSite");不知道要不要加@
------解决方法--------------------------------------------------------
string path = Server.MapPath("/MyWebSite");
Server.MapPath是路径  是对象
string是引用类型
怎么能相等呢?
------解决方法--------------------------------------------------------
string path = Server.MapPath("\\MyWebSite");
------解决方法--------------------------------------------------------
string path = Server.MapPath("~\MyWebSite");

        

热点排行