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

请问在winform调用webservice保存文件提示路径异常的解决办法

2012-03-20 
请教在winform调用webservice保存文件提示路径错误的解决方法我的webservice是这样写的。[WebMethod]public

请教在winform调用webservice保存文件提示路径错误的解决方法
我的webservice是这样写的。
 [WebMethod]
  public void UpdateFile(byte[] content, string pathandname)
  {
  File.WriteAllBytes(Server.MapPath(pathandname), content);
  }

然后在winform中调用UpdateFile方法时,提示“未能找到保存的路径”,请问大家要如何解决。



[解决办法]
判断下啊,没有那路径就先创建一个再保存
[解决办法]

C# code
string path = Server.MapPath(pathandname);if (File.Exists(path) == false){  File.Create(path);}
[解决办法]
asp.net 对这个路径有写的权限吗?

热点排行