コードビハインドでダウンロードした後、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);
}