ダウンロードを要求する代わりに、SHDocVw.InternetExplorer がファイルをインラインで開くように強制する方法はありますか? ここにいくつかのコードがあります:
Friend WithEvents browser As SHDocVw.InternetExplorer
browser = CreateObject("InternetExplorer.Application")
...
browser.Navigate("http://...", , "_self", dataBytes, sHeaders)
これは POST リクエストです
応答ヘッダーには次が含まれます。
Content-Type application/javascript; charset=utf-8
Cache-Control no-cache, no-store, max-age=0, must-revalidate
Pragma no-cache
Content-Disposition attachment
Content-Encoding gzip
iE8 はダウンロードのプロンプトを表示します (ファイルには拡張子がないため、SAVE のみが許可されます) が、プロンプトなしで応答コンテンツを読みたいと思います。これを行う方法はありますか?ありがとうございました!