代码有如下处理
先调用如下方法生成一个WORD,
System.IO.File.WriteAllBytes(filePath, byte_content);
然后执行大概5次如下,操作:
HttpPostedFile file = Request.Files[0]; if (file != null && file.ContentLength > 0) { file.SaveAs(filepath);
}
ie 报错大概内容:
内存不能为read 等等 缓冲区溢出的错误。
没有读写磁盘的权限。