|
怎么才能在IE正常显示word文档,是各个机子的设置问题吗? |
|
|
|
关注
|
|
|
Dim data As Byte() = dsFile.Tables(0).Rows(0).Item("Info") Response.ContentType = "application/msword" Response.BinaryWrite(data) Response.End() |
|
|
Response.ClearContent(); Response.ClearHeaders(); Response.ContentType="application/msword"; Response.BinaryWrite(arrDoc); Response.Flush(); Response.Close(); |
|