我试图在超链接点击上打开word文档。现在下面的代码是打开对话框并要求保存。
如何在没有用户询问对话框的情况下直接打开word文档进行保存或打开?只需要用word doc弹出。
Response.Clear()
Response.ContentType = "application\msword"
Dim file As New System.IO.FileInfo(Server.MapPath("/UserManual\Carangi Reunderwriting Website User Manual.docx"))
Response.AddHeader("Content-Disposition", "inline; filename=" + file.Name)
Response.AddHeader("Content-Length", file.Length.ToString())
Response.TransmitFile(file.FullName)
Response.Flush()
Response.End()
答案 0 :(得分:0)
浏览器设置可以覆盖content-disposition标头。您可能需要检查并查看您的文档是否在其他浏览器或其他计算机上内联打开。在我看来,这些天保守的默认设置应该在从网页打开word文档之前显示保存对话框。