码迷,mamicode.com
首页 > 其他好文 > 详细

shapoint 列表 添加附件问题

时间:2017-05-16 17:59:58      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:new   pat   adf   控件   parse   方式   服务   nbsp   contents   

由于用ajax的方式给列表添加附件。所以不能用服务器控件 UploadFile,获取文件流字节就不能用UploadFile.FileBytes,

但使用  System.IO.FileInfo myfile = new System.IO.FileInfo(filePath);
               byte[] fileContents = new byte[int.Parse(myfile.Length.ToString())];
               这种方式获取的字节,添加到附件中,有些文件虽然被上传了,但有可能文件内容空白。

解决方法:  使用byte[] fileContents = File.ReadAllBytes(filePath); 就可以解决。。坑了2个小时。。

shapoint 列表 添加附件问题

标签:new   pat   adf   控件   parse   方式   服务   nbsp   contents   

原文地址:http://www.cnblogs.com/tengfei8/p/6862602.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!