iis - Using CFContent on IE with SSL -


cfcontent not work ie on ssl site. have been looking fix have not found one. alternative have cfcontent download excel sheet directory , use cflocation forward file. have no use of these files on hard drive though.

i tried using cfheader

<cfheader name="content-disposition" value="inline; filename=emp.xls">  <cfcontent type="application/vnd.ms-excel"> 

any ideas?

typically issues internet explorer , ssl have caching.

make sure internet explorer not have setting do not save encrypted pages disk enabled (checked). can find setting in ie under internet options > advanced > under security section.

make sure not sending no-cache headers response. these example:

<cfheader name="pragma" value="no-cache" /> <cfheader name="cache-control" value="no-cache" /> 

note hardware/web servers can send these no-cache headers if configured so. can use network monitoring tool fiddler "see" these headers.


Comments

Popular posts from this blog

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -

python - How to create a legend for 3D bar in matplotlib? -