如题。谢谢.string path = File1.PostedFile.FileName;
Stream fileStream = File1.PostedFile.InputStream; int length = File1.PostedFile.ContentLength; byte[] wordData=new byte[length];不会写了。知道后面还要写 Response.ContentType = "application/msword";。但是写出来不是显示在页面上而是成下载样
1 回答
陪伴而非守候
TA贡献1757条经验 获得超8个赞
试试下面的代码:
Response.ContentType = "application/msword";
Response.WriteFile(FilePath);
- 1 回答
- 0 关注
- 588 浏览
添加回答
举报
0/150
提交
取消