J
Joe Turek
I store images in a database instead of the filesystem. I deliver these
images via a page that uses Response.OutputStream to send the bytes back to
a calling page. So a given page on my site will embed an image like this:
<img id="imageone" src="http://localhost/image.aspx?id=20"></img>
I display a page with a gallery of these images for users to drag into a
content editor for the CMS portion of the site.
All of this has worked fine. However, it breaks when users install the
Internet Security update MS04-038. Users are no longer able to drag images
(although they can still copy and paste them). KB article
http://support.microsoft.com/default.aspx?scid=kb;en-us;887614 states that
some DHTML drag and drop operations are blocked after applying this security
update The workarounds say to ensure that you use valid images.
My questions: What are the criteria for determining if an image is valid? Is
there some way to modify the response stream so IE views my dynamically
delivered images as valid?
Thanks in advance,
Joe
images via a page that uses Response.OutputStream to send the bytes back to
a calling page. So a given page on my site will embed an image like this:
<img id="imageone" src="http://localhost/image.aspx?id=20"></img>
I display a page with a gallery of these images for users to drag into a
content editor for the CMS portion of the site.
All of this has worked fine. However, it breaks when users install the
Internet Security update MS04-038. Users are no longer able to drag images
(although they can still copy and paste them). KB article
http://support.microsoft.com/default.aspx?scid=kb;en-us;887614 states that
some DHTML drag and drop operations are blocked after applying this security
update The workarounds say to ensure that you use valid images.
My questions: What are the criteria for determining if an image is valid? Is
there some way to modify the response stream so IE views my dynamically
delivered images as valid?
Thanks in advance,
Joe