标签: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个小时。。
标签:new pat adf 控件 parse 方式 服务 nbsp contents
原文地址:http://www.cnblogs.com/tengfei8/p/6862602.html