JPG or jpg

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can anyone tell me the difference please between these two formats, as an (
looks like a case sensitive) asp wil not recognise both formats. If there is
a significant difference how do I save a *.JPG as a *.jpg.
Thank you
 
There is no difference *.jpg = *.JPG.

If you're on unix, that's a different matter - the *case* of filenames does
matter and Unix does treat them as different file names; but since you're
using ASP I assume you're on a Windows Server and there should be no
discernable difference since Windows doesn't care about upper or lower case
in terms of filenames like Unix does.

Anyway if you open the file, the Save As, make sure you type the file name
in lowercase. as in "picture.jpg" rather than "picture.JPG" - but they are
all the same thing on Windows.
 
Andrew many thanks
mick

Andrew Murray said:
There is no difference *.jpg = *.JPG.

If you're on unix, that's a different matter - the *case* of filenames does
matter and Unix does treat them as different file names; but since you're
using ASP I assume you're on a Windows Server and there should be no
discernable difference since Windows doesn't care about upper or lower case
in terms of filenames like Unix does.

Anyway if you open the file, the Save As, make sure you type the file name
in lowercase. as in "picture.jpg" rather than "picture.JPG" - but they are
all the same thing on Windows.
 
Back
Top