473,404 Members | 2,195 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

Missing Images in IE

Hi All

Apols to past readers who may have seen something like this a couple of days
ago in this NG, but I'm on a different track.

Basically does anybody know what the answer is for when you visit a web site
(more so with IE 6 and WinXP) and some of the pics (gifs/jpgs) don't appear.

Instead the white box with the red cross takes it's place until you
right-click on the pic and select Show Pictures.

Once you do this the pictures show up for the remainder of the session.

It appears to be pics that are repeated such as thumbnails for nav link
lists and I just can't seem to fix it with HTML code. It seems to be a
browser issue, as the pics intermittantly load or don't load (until you
click Show Pictures from the floating menu).

Please somebody put me out of my misery on this.

Thanks

Laphan


Jul 23 '05 #1
6 1637
On Wed, 7 Jul 2004 21:51:13 +0100, Laphan wrote:
Apols to past readers who may have seen something like this a couple of days
ago in this NG, but I'm on a different track.


Are you also offering an apology to all the readers
on all the groups to which you are multi-posting
this question?

See my answer on c.i.w.a.s.

--
Andrew Thompson
http://www.PhySci.org/ Open-source software suite
http://www.PhySci.org/codes/ Web & IT Help
http://www.1point1C.org/ Science & Technology
Jul 23 '05 #2
Laphan wrote:
Basically does anybody know what the answer is for when you visit
a web site (more so with IE 6 and WinXP) and some of the pics
(gifs/jpgs) don't appear. [...]


Either <http://windowsupdate.microsoft.com/>
or <http://mozilla.org/>, while I recommend
the latter.
PointedEars
Jul 23 '05 #3
>Basically does anybody know what the answer is for when you visit a web site
(more so with IE 6 and WinXP) and some of the pics (gifs/jpgs) don't appear.


IE6 has a problem displaying images, and the problem is rather random. The
current Windows updates don't fix the problem.

The following javascript snippet fixes my problems, but use at your own risk
(times may need to be tweaked:

function imagePatchIE() {
var imageLoadOk = true;
try {
for (var i = 0; i < document.images.length; i++) {
if (!document.images[i].mimeType) {
document.images[i].src = document.images[i].src;
imageLoadOk = false;
}
}
} catch(arg) {
imageLoadOk = false;
}
if (!imageLoadOk) setTimeout('imagePatchIE();', 5000);
}

if (document.all) setTimeout('imagePatchIE();', 1000);
Enjoy,
Chris Rathman.
Jul 23 '05 #4
ChrisRath wrote:
Basically does anybody know what the answer is for when you visit a web site
(more so with IE 6 and WinXP) and some of the pics (gifs/jpgs) don't appear.


IE6 has a problem displaying images, and the problem is rather random. The
current Windows updates don't fix the problem.


Well, after upgrading to IE 6.0 SP-1, I did
not have this particular problem anymore.
PointedEars
Jul 23 '05 #5
>Well, after upgrading to IE 6.0 SP-1, I did
not have this particular problem anymore.


After having applied every patch to date, I still have the problem. Missing
images are a problem that has been said to have been solved several times - and
inexplicably crops up again and again. Though the symptom of the missing image
is the same, there's actually a number of different underlying causes.

Here's a couple of references from the MS KB.

http://support.microsoft.com/default...&Product=ie600

http://support.microsoft.com/default...b;en-us;817177

http://support.microsoft.com/default...b;en-us;283807

Jul 23 '05 #6
>Here's a couple of references from the MS KB.

And while I'm on the matter, I posted some stuff on one of my forum hangouts a
while back:

http://z.iwethey.org/forums/render/c...ntentid=150605

Reference is to a test page that I set up at:

http://www.angelfire.com/tx4/cus/test/test.html

The missing image problem is subtle and may take quite a few refreshes but I do
get them under the latest version of IE (Version
6.0.2800.1106.xpsp2.030422-1633).

Anyhow, the JavaScript I posted is fairly innocuous, and assuming the images do
load properly, then it doesn't do much of anything (the MimeType is checked).

Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Ed | last post by:
I first noticed this in my own app. Images would show up missing randomly on IE 6.0.2800.1106 on Windows 2000 server. I then was able to repro this problem on Microsoft's website!!! The page I...
2
by: James | last post by:
I created a .Net add-in for Microsoft Excel.When the application load, all the images that will be used in the application will be loaded. I have a few forms, and some of them contain ListView...
0
by: Chris | last post by:
I finally got my report to be recongized, that login issue is terrible. Using VS.NET 2003, created report inside of it. Now when I attempt to display the report is blank (missing data, though I can...
2
by: Horace Nunley | last post by:
Some images don't show up in my friend's browser, but they work in mine. The banner show up in her browser and mine, but the refigerator only shows up in mine: The refrigerator is selected in...
2
by: callieandmark | last post by:
If i use an include to an external webpage why are the graphics and formatting missing ? Basically I want my own page heading and a form at the top of my page and then an external page beneth....
3
by: five40 | last post by:
I have an aspx page that returns a list of products in a datagrid. The datagrid contains a template which contains a link to an image. The image name is stored in the database. The actual images...
3
by: vozzek | last post by:
Hi all, I'm a CSS rookie, but I'm stumped. Hopefully this is something simple that I'm overlooking. My master/detail page generates the following html code, and I've got it formatted with CSS...
1
by: =?Utf-8?B?UGV0ZXIgQnJvbWJlcmcgW0MjIE1WUF0=?= | last post by:
Well -- I generally use the web-base Microsoft newsgroup app, and all I see is the text of your message. I don't remember ever seeing a "handled" property of the exception dialog, at least not in...
0
by: dotnet2005 | last post by:
Hi Toall , I want to explain you clearly , I am having some panels having some controls CheckBox,ComboBox,Datagridview,Hyperlink,label,Listbox,Picturebox,RadioButt­ on ,Textbox)...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.