在客户端安装Office的情况下
方法一
直接把超链地址指向doc文件就可以了
这样就会在IE窗口中直接打开DOC文件.
点击下面的链接看看。
http://202.101.27.20/test.doc
方法二
后台代码中采用如下的写法:
Dim FileName As String = 要下载的word文件名
Dim FilePathName As String = Server.MapPath("") + "\" + FileName
Context.Response.ContentType = "application/octet-stream"
Context.Response.AddHeader("Content-Disposition", "filename=" & HttpUtility.UrlEncode(FileName, System.Text.Encoding.UTF8))
Context.Response.WriteFile(FilePathName)
Context.Response.End()