我已经编写了代码以在后面的代码中下载 Word 文档后打开它。文档可以正常打开,但没有以 Word 格式保存。当我要打开它时,它要求选择打开文件的格式。
代码如下:
string FullFilePath = "D:\\ASP\\ASP.doc";
FileInfo file = new FileInfo(FullFilePath);
if (file.Exists)
{
Response.ContentType = "application/vnd.ms-word";
Response.AddHeader("Content-Disposition", "inline; filename=\"" + txtDate.Text + "\"");
Response.AddHeader("Content-Length", file.Length.ToString());
Response.TransmitFile(file.FullName);
}