*doc、*xls、*pdf を、それらのアプリケーションではなくブラウザ ウィンドウに表示したい。次のコードを試してみましたが、ブラウザに表示する代わりに、保存/開くダイアログが表示されません
//Set the appropriate ContentType.
Response.ContentType = "Application/msword";
//Get the physical path to the file.
string FilePath = MapPath("wordfile.doc");
//Write the file directly to the HTTP content output stream.
Response.AppendHeader("Content-Disposition", "inline;filename=" + "wordfile.doc");
Response.WriteFile(FilePath);
Response.End();
助けてください
ありがとう