Some of JPG files refuse to show up in the ASP page

G

Guest

Although this question does not belong in here, I hope someone help, as I do
not know where to send it, but someone here might have come acros similar
problem:
Some of JPG files sitting in the same folder show up OK on an HTML page,
while the other do not as if they are not there or their name is misspelt.
Tried low-upper case in an ASP page, and in the files names - same result
Then I noticed that the same files do not show up in the preview pane in the
Windows Explorer althought they still are described by Windows Explorer as
valid JPEG files.
These "wrong" files are not necessarily bigger then the good ones and in
Microsoft Photo Editor they all (good and bad) show up well and they all are
118 Pixels/cm and True Color (24 bit)

What might be wrong with these files?
If there is not direct answer, perhaps spmeone recommend me a correct
newsgroup?
 
G

Guest

<img src="p1.jpg"/>
<img src="p2.jpg"/>
The first one does show up, the other does not
 
W

William Morris

I can't find anything wrong with the <img> code - even tried it on my own
server, though I've not seen putting the forward slash at the end very
often. <img src="pic1.jpg"/> as opposed to <img src="pic1.jpg">.

What version of IIS?
What browser are you using?
If you use a different browser does the problem go away?
What ELSE is going on on the page?
 
G

Guest

William,
I am sure it has nothing to do with html/asp code as the same code works for
one image and does not for another. Just have a look at the live page in
question:
http://www.electrolube.com/distributors/pictures_for_d/show_all_images_in_the_folder.asp

ASP code uses the FileSystemObject to read all the filenames in the folder
and then puts these names in the <img> tags so all the images in a folder
are supposed to be displayed. Of course all the <img> tags are absolutely
the same except the filenames. And yet some images do not show up.

Mistakes in the filenames are out of question, unless FSO somehow mis-read
them, but I checked them in the resulting HTML (view source) and everything
is correct including the letter case.
So ther problem is iof the files themselves

A
 
R

Roland Hall

http://www.electrolube.com/distributors/pictures_for_d/show_all_images_in_the_folder.asp

I wouldn't assume there is nothing wrong with the code when I see this:

folder_contents.asp 1563
show_all_images_in_the_folder.asp 1345

....and the source is this:

<img src='folder_contents.asp' border='1'>&nbsp; &nbsp;folder_contents.asp
&nbsp; &nbsp;1563<br>
<img src='show_all_images_in_the_folder.asp' border='1'>&nbsp;
&nbsp;show_all_images_in_the_folder.asp &nbsp; &nbsp;1345<br>

Since you're using IIS 5.0, the names shouldn't be case sensitive and I've
already test that. The files do not have .gif, .png or .bmp extensions so
my only conclusion is that you're pulling the file size from a database and
not actually getting the information directly from the file at run time.
So, either the files that do not show are zero bytes or you've added them to
your site with Visual InterDev or something similar that uses FPSE
(FrontPage Server Extensions) and you're working in master mode and it shows
the files to be there in your editor but they have not been added to the
master web. It will show a blue pennant as the icon next to the file in the
editor.

I have experienced this before when trying to upload a lot of large files
via VI 6.0.

Since the files just do not display instead of generating an error, it
appears they are actually there but they're zero bytes.
Seeing the code might help to prove or disprove it's not something in the
code.

The other thing that would keep it from displaying you're not using which
would be an ID, if you were preloading and using getElementById. It would
load the first image with the ID but any subsequent images with the same ID
would not be loaded.


--
Roland

This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose.
 
R

Roland Hall

William...

I tried loading the files that do not display by themselves in the browser
by calling them by name and they do not display that way either. So, I
downloaded one of the files and tried to display it locally in IE, still
nothing. So, I opened the image in Microsoft Photo Editor and resaved it.
Now it shows the image.

Uncompressed the file is almost 2Mb. Compressed the original version was
314Kb and now 35Kb. The image settings are still the same, True
Color(24-bit), width: 666px, height: 999px, uncompressed bytes: 1996002.

You can see them here: http://kiddanger.com/lab/electrolube/images.html
....or at least see the new revision.

--
Roland

This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose.
 
G

Guest

William and Ronald,
The bit of the source code you are refering to
<img src='folder_contents.asp' border='1'>
Is absolutely correct and of cource no image shows up because
folder_contents.asp (as well as show_all_images_in_the_folder.asp) is not an
image but the ASP code.
For the moment it is sitting together with the images, but once the whole
thing is working, I either move it into another forlader or add an IF
statement which would skip over files with .asp extention

The rest image tags are formed like that

<img src='apl400-1.jpg' border='1'>

which seems perfectly OK to me, escept a missing closing "/" which should
not affect the image display. Yet the image fails.

So the problem seems to be with the images?
 
G

Guest

So the problem is with the compression?
a
Roland Hall said:
William...

I tried loading the files that do not display by themselves in the browser
by calling them by name and they do not display that way either. So, I
downloaded one of the files and tried to display it locally in IE, still
nothing. So, I opened the image in Microsoft Photo Editor and resaved it.
Now it shows the image.

Uncompressed the file is almost 2Mb. Compressed the original version was
314Kb and now 35Kb. The image settings are still the same, True
Color(24-bit), width: 666px, height: 999px, uncompressed bytes: 1996002.

You can see them here: http://kiddanger.com/lab/electrolube/images.html
...or at least see the new revision.

--
Roland

This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose.
 
G

Guest

Have you tried using different images? or forcing changes and
re-saving those?

Yes, As I said, some images for the same folder within the same <img> tags
work fine. For example, on the same page which I earlier indicated
dca200h.jpg show up well



William Tasso said:
aa said:
...
The rest image tags are formed like that

<img src='apl400-1.jpg' border='1'>

It's more usual to use double-quotes, but of course I can't find a reference
now so I'm not sure if this could be causing an issue. don't forget the ALT
attribute:
which seems perfectly OK to me, escept a missing closing "/" which
should not affect the image display.

The closing / is only required in XHTML documents. As you haven't specified
a DTD I suspect the browser should just ignore it, but you can never be sure
how browser error-correction code is implemented.
Yet the image fails.

Works in Opera
So the problem seems to be with the images?

Could be. Have you tried using different images? or forcing changes and
re-saving those?

btw: & is not valid for use in URLs

Here's a valid[1] page (pulls images from your server).
http://williamtasso.com/usenet/electrolube.html Seems to indicate that there
is nothing seriously wrong with your markup. It partially works in IE6 and
Mozilla (as does your page) but Opera successfully pulls all images
requested. I'd start by resaving the images. btw: do they have to be so
large?

[1]
http://validator.w3.org/check?uri=http://williamtasso.com/usenet/electrolube.html
 
R

Roland Hall

So the problem is with the compression?

It appears that way. Either IE is more strict or buggy reading the image
file or the other browser is more liberal. I really don't know which is
which.

I have seen .jpg files with different compression strengths from different
graphics programs and some would load in some files or some would get
corrupted and not load at all and then some, like LViewp1b could load the
part that was good and then just display background where the rest of the
image was corrupt or where the corruption was first noticed. I don't think
it could recover past it by showing just part in the middle. I've never
seen this with IE except when the file was corrupt and it would error out.

As far as what you're seeing, I've only noticed it when the file was zero
bytes or the image was on a *nix server and the filenames were
case-sensitive and I had a typo, until now. So, you might want to
investigate further with the graphics app you're using and see if you can
make some setting changes or consider running the file through a different
application, until you can find out what the cause is.

At least you know it's not your code.

--
Roland

This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,141
Messages
2,570,817
Members
47,364
Latest member
Stevanida

Latest Threads

Top