473,397 Members | 2,033 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,397 software developers and data experts.

images not showing in Mozilla and Firefox

Hi, I have a frame in one of my pages that I use to show diferent pages each
time. I am experiencing an weird behaviour in Mozilla and Firefox, when the
frame's source is specified in the server side it works OK, but when the
content of the frame is changed in the client browser clicking over a link
then the frame dont render the pinctures but just the text. I dont
understand.
Any ideas??
Thanks.
Feb 8 '06 #1
9 3125
The only image types you can count on all browsers supporting are JPG and
GIF.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Alex D." <al********@hotmail.com> wrote in message
news:uo*************@TK2MSFTNGP10.phx.gbl...
Hi, I have a frame in one of my pages that I use to show diferent pages
each time. I am experiencing an weird behaviour in Mozilla and Firefox,
when the frame's source is specified in the server side it works OK, but
when the content of the frame is changed in the client browser clicking
over a link then the frame dont render the pinctures but just the text. I
dont understand.
Any ideas??
Thanks.

Feb 8 '06 #2
indeed, my images are jpg. I believe this is a problem related to relative
paths not being correctly recognized, but I dont understand why...I believe
my images relative path which is actually the same path as the htm page that
contains the images is not being correctly recognized. In IE it works OK.

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:eX*************@TK2MSFTNGP12.phx.gbl...
The only image types you can count on all browsers supporting are JPG and
GIF.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Alex D." <al********@hotmail.com> wrote in message
news:uo*************@TK2MSFTNGP10.phx.gbl...
Hi, I have a frame in one of my pages that I use to show diferent pages
each time. I am experiencing an weird behaviour in Mozilla and Firefox,
when the frame's source is specified in the server side it works OK, but
when the content of the frame is changed in the client browser clicking
over a link then the frame dont render the pinctures but just the text. I
dont understand.
Any ideas??
Thanks.


Feb 8 '06 #3
Alex D. wrote:
Hi, I have a frame in one of my pages that I use to show diferent pages each
time. I am experiencing an weird behaviour in Mozilla and Firefox, when the
frame's source is specified in the server side it works OK, but when the
content of the frame is changed in the client browser clicking over a link
then the frame dont render the pinctures but just the text. I dont
understand.
Any ideas??
Thanks.

Try using a debugging proxy (in firefox there's a LiveHTTPHeaders
extension too). That way you'll be able to find out what's going on exactly.
Feb 9 '06 #4
Hi,

john smith wrote:
Alex D. wrote:
Hi, I have a frame in one of my pages that I use to show diferent
pages each time. I am experiencing an weird behaviour in Mozilla and
Firefox, when the frame's source is specified in the server side it
works OK, but when the content of the frame is changed in the client
browser clicking over a link then the frame dont render the pinctures
but just the text. I dont understand.
Any ideas??
Thanks.

Try using a debugging proxy (in firefox there's a LiveHTTPHeaders
extension too). That way you'll be able to find out what's going on
exactly.


Also, Venkman is an excellent (free) client-side debugger for the
Mozilla browsers (Netscape, Mozilla, Firefox).

If you have problems with paths, try viewing the source, it might show
you what's wrong.

HTH,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch
Feb 9 '06 #5
Give use a URL and we can take a look.

There are several different JPG formats and types of compression. I don't
know, but it might have something to do with that.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Alejandro Penate-Diaz" <al********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
indeed, my images are jpg. I believe this is a problem related to relative
paths not being correctly recognized, but I dont understand why...I
believe my images relative path which is actually the same path as the htm
page that contains the images is not being correctly recognized. In IE it
works OK.

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:eX*************@TK2MSFTNGP12.phx.gbl...
The only image types you can count on all browsers supporting are JPG and
GIF.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Alex D." <al********@hotmail.com> wrote in message
news:uo*************@TK2MSFTNGP10.phx.gbl...
Hi, I have a frame in one of my pages that I use to show diferent pages
each time. I am experiencing an weird behaviour in Mozilla and Firefox,
when the frame's source is specified in the server side it works OK, but
when the content of the frame is changed in the client browser clicking
over a link then the frame dont render the pinctures but just the text.
I dont understand.
Any ideas??
Thanks.



Feb 9 '06 #6
guys this is the very simple code for the page in my frame...if I set the
frame's source at server's side my images are rendered, but I click over a
link to that same page in my browser then my frame dont show the pictures
but just the text "Some Text"

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Homepage</title>
</head>
<body>
<img src="pic1.jpg" width="216" height="86" />
<img src="pic2.jpg" width="216" height="63" />
<img src="pic3.jpg" width="144" height="44" />
<br />
<font face="Verdana" size="1"> Some text </font>

</body>
</html>

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Give use a URL and we can take a look.

There are several different JPG formats and types of compression. I don't
know, but it might have something to do with that.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Alejandro Penate-Diaz" <al********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
indeed, my images are jpg. I believe this is a problem related to
relative paths not being correctly recognized, but I dont understand
why...I believe my images relative path which is actually the same path
as the htm page that contains the images is not being correctly
recognized. In IE it works OK.

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:eX*************@TK2MSFTNGP12.phx.gbl...
The only image types you can count on all browsers supporting are JPG
and GIF.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
We got a sick zebra a hat,
you ultimate tuna.
"Alex D." <al********@hotmail.com> wrote in message
news:uo*************@TK2MSFTNGP10.phx.gbl...
Hi, I have a frame in one of my pages that I use to show diferent pages
each time. I am experiencing an weird behaviour in Mozilla and Firefox,
when the frame's source is specified in the server side it works OK,
but when the content of the frame is changed in the client browser
clicking over a link then the frame dont render the pinctures but just
the text. I dont understand.
Any ideas??
Thanks.



Feb 9 '06 #7
guys this is the very simple code for the page in my frame...if I set the
frame's source at server's side my images are rendered, but if I click over
a
link to that same page in my browser then my frame dont show the pictures
but just the text "Some Text"...and in FireFox when I right clik and select
Page Info and go to the tab "Media" the I see that my images are loosing its
relative path...for some reason FireFox is not taking into account the path
for my page and is putting my images in the root of my wen site....isn't
that weird??

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Homepage</title>
</head>
<body>
<img src="pic1.jpg" width="216" height="86" />
<img src="pic2.jpg" width="216" height="63" />
<img src="pic3.jpg" width="144" height="44" />
<br />
<font face="Verdana" size="1"> Some text </font>

</body>
</html>

"Laurent Bugnion" <ga*********@bluewin.ch> wrote in message
news:ds**********@zrha118x.zrh.siemens.ch...
Hi,

john smith wrote:
Alex D. wrote:
Hi, I have a frame in one of my pages that I use to show diferent pages
each time. I am experiencing an weird behaviour in Mozilla and Firefox,
when the frame's source is specified in the server side it works OK, but
when the content of the frame is changed in the client browser clicking
over a link then the frame dont render the pinctures but just the text.
I dont understand.
Any ideas??
Thanks.

Try using a debugging proxy (in firefox there's a LiveHTTPHeaders
extension too). That way you'll be able to find out what's going on
exactly.


Also, Venkman is an excellent (free) client-side debugger for the Mozilla
browsers (Netscape, Mozilla, Firefox).

If you have problems with paths, try viewing the source, it might show you
what's wrong.

HTH,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch

Feb 9 '06 #8
guys the problem is in my URL address some / are \ for some reason it work
ok in IE but not in Firefox, mozilla. I still need to check if I am sending
bad-formed url's and IE is fixing them, or if Firefox-Mozilla are changing
my / to \

"Alex D." <al********@hotmail.com> wrote in message
news:uo*************@TK2MSFTNGP10.phx.gbl...
Hi, I have a frame in one of my pages that I use to show diferent pages
each time. I am experiencing an weird behaviour in Mozilla and Firefox,
when the frame's source is specified in the server side it works OK, but
when the content of the frame is changed in the client browser clicking
over a link then the frame dont render the pinctures but just the text. I
dont understand.
Any ideas??
Thanks.

Feb 9 '06 #9
ok guys it was me sending bad urls...
IE automatically changes \ to / if and only if the \ is not before the root
for the web app.
Thanks everybody!

"Alex D." <al********@hotmail.com> wrote in message
news:ur****************@TK2MSFTNGP12.phx.gbl...
guys the problem is in my URL address some / are \ for some reason it work
ok in IE but not in Firefox, mozilla. I still need to check if I am
sending bad-formed url's and IE is fixing them, or if Firefox-Mozilla are
changing my / to \

"Alex D." <al********@hotmail.com> wrote in message
news:uo*************@TK2MSFTNGP10.phx.gbl...
Hi, I have a frame in one of my pages that I use to show diferent pages
each time. I am experiencing an weird behaviour in Mozilla and Firefox,
when the frame's source is specified in the server side it works OK, but
when the content of the frame is changed in the client browser clicking
over a link then the frame dont render the pinctures but just the text. I
dont understand.
Any ideas??
Thanks.


Feb 9 '06 #10

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

Similar topics

4
by: ekimnosnews | last post by:
I'm programming a JS tile map editor for my friend's game. The map editor has different "sections" that contain different tiles. The way that it works is when you select a section it calls a JS...
2
by: dev_prog | last post by:
Hey gurus, Just wrote a basic java script to show a phrase on the client's browser status bar as follows: window.status = "Hello World"; It worked properly under IE but not under Mozilla...
16
by: Neo Geshel | last post by:
I'm helping on a web site, and it's got our knickers in a knot. We're using the same basic CSS files (with mods) and same headers as from our other sites, but the "print preview" won't work...
0
by: BACON | last post by:
I'm just starting the process of reorganising my modest little website and cleaning up all the HTML, and the logical place to begin was with the homepage. I made a simple little ASP.NET control...
8
by: Clément | last post by:
Hi! I am currently developping a user interface with Ajax/C#/.net. And I am facing a problem with Mozilla, and Firefox. I use the function innerHTML to load a Web UserControl into a div, this...
8
by: nektir | last post by:
I have an external js file to validate a form and it works in IE and Opera, but not Mozilla Firefox. In Mozilla Firefox, the javascript console sasys "SearchForm" is not defined in the second...
27
by: rsteph | last post by:
I've got a site that appears properly in both IE and Netscape for has all sorts of appearance issues in Mozilla Firefox. I've looked around for some points on the web that help explain the issue, but...
4
by: viral612 | last post by:
i m trying to see the xml in a browser using an xslt.... My xml i have defined as <?xml version=" 1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl"...
2
by: sajithamol | last post by:
How can i migrate one application from IE to Mozilla Firefox. while working in IE , javascript was working perfectly . But when i used Mozilla firefox , javascript not working. How can i make one...
3
by: Matsam | last post by:
Hi, I have a site whose fist page is html and the rest is ASP. It works fine in IE. But in Mozilla firefox, the first page is displaying. There is a login name & password verification in that...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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.