有没有办法让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)但我想在没有任何提示的情况下阅读响应内容。有没有办法做到这一点? 谢谢!