servlets - Open Save Cancel dialogue not coming for IE10 for HTML file -
upto ie 8, if try open attached html file, can see open-save-cancel dialogue. in ie-10, open option not coming. save-cancel coming. removed due kind of security issue? if yes, there workaround fix this?
we using below code open html file - (this might irrelevent same code working fine till ie-8. it's reference)
inputstream in = filetobedisplayed.getbinarystream(); outputstream fr = response.getoutputstream(); response.setheader("content-disposition","attachment;filename="abc.html"); response.setcontenttype("text/html"); int b; while ((b = in.read()) != -1) { fr.write(b); } in.close(); fr.flush(); fr.close();
Comments
Post a Comment