G
Guest
I have a list of dynamically generated thumbnails. Each image has a
path of picture.ashx?id=123. That works well. However, a few (from
thousands) visitors have a red-X instead of dynamic images. One of
them told me that he was able to see images on a 2003 Windows Server
when he added the site to the "Trusted List" (it was using IE Enhanced
Security Configuration - a feature of Server 2003). After he added it,
he saw the thumbnails. Any ideas of what could be wrong there?
Unfortunately, I cannot check if clients who had problems have any AD-
blocking software, or an antivirus installed.
The Picture HttpHandler is quite simple and sends ContentType
System.Web.HttpContext.Current.Response.Clear();
System.Web.HttpContext.Current.Response.ContentType = "image/jpeg";
path of picture.ashx?id=123. That works well. However, a few (from
thousands) visitors have a red-X instead of dynamic images. One of
them told me that he was able to see images on a 2003 Windows Server
when he added the site to the "Trusted List" (it was using IE Enhanced
Security Configuration - a feature of Server 2003). After he added it,
he saw the thumbnails. Any ideas of what could be wrong there?
Unfortunately, I cannot check if clients who had problems have any AD-
blocking software, or an antivirus installed.
The Picture HttpHandler is quite simple and sends ContentType
System.Web.HttpContext.Current.Response.Clear();
System.Web.HttpContext.Current.Response.ContentType = "image/jpeg";