473,785 Members | 3,134 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 3139
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********@hot mail.com> wrote in message
news:uo******** *****@TK2MSFTNG P10.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***@DIESPAMM ERSDIEtakempis. com> wrote in message
news:eX******** *****@TK2MSFTNG P12.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********@hot mail.com> wrote in message
news:uo******** *****@TK2MSFTNG P10.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********@hot mail.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.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***@DIESPAMM ERSDIEtakempis. com> wrote in message
news:eX******** *****@TK2MSFTNG P12.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********@hot mail.com> wrote in message
news:uo******** *****@TK2MSFTNG P10.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***@DIESPAMM ERSDIEtakempis. com> wrote in message
news:%2******** ********@TK2MSF TNGP12.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********@hot mail.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.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***@DIESPAMM ERSDIEtakempis. com> wrote in message
news:eX******** *****@TK2MSFTNG P12.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********@hot mail.com> wrote in message
news:uo******** *****@TK2MSFTNG P10.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*********@bl uewin.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********@hot mail.com> wrote in message
news:uo******** *****@TK2MSFTNG P10.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********@hot mail.com> wrote in message
news:ur******** ********@TK2MSF TNGP12.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********@hot mail.com> wrote in message
news:uo******** *****@TK2MSFTNG P10.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
1805
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 function that changes the src of a script tag that contains the array of tiles for that section, then reloads the tile selection table. This works great in IE, but Mozilla/Firefox doesn't update the array when I switch JS files. I've tried putting a...
2
1329
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 FireFox. The latter is still showing "Done" when I open the webpage. Any idea? TIA
16
11437
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 correctly on this site. The site is here: http://askdrray.kabis.net (temporary location) The site is being worked on, and only the front page works right now. Expect constant changes. Ignore everything “below the fold”, as the links there...
0
1431
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 that I can drop into the beginning of any page and it will generate HTML to display my logo, a link, and (optionally) a quote of the day, all of which will be horizontally centered at the top of the page by my default stylesheet. For the main page,...
8
7774
by: Clment | 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 way the main page never gets refreshed. It works perfectly under IE, but with Mozilla and Firefox I got a problem : there is a space before the thing I want to display everytime I use ".innerHTML".
8
12730
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 line function Valid() { if ((SearchForm.FirstName.value == "") && (SearchForm.LastName.value == "") && (SearchForm.Phone.value == "") && (SearchForm.Dept.value == "%")) {
27
4798
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 have so far found nothing. I've come to the conclussion that the problem has to be a CSS one. Here's the site address. It's currently being hosted on Tripod, until we get some of the bugs worked out and put it on the final hosting site: ...
4
1707
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" href="Topic_publications_xsl.xsl"?> <!DOCTYPE root > <root> &about;
2
1216
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 application that can work in both browswers( IE and Mozilla Firefox )
3
7644
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 page. The login name & password are verified on loading the second page. But when we click OK, the 2nd page is only showing some junk characters. Actually the 2nd page is retrieving some data from an Access DB. For Apple Safari browser also, same is...
0
9643
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
10319
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10147
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8971
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 projectplanning, coding, testing, and deploymentwithout human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6737
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4046
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3645
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2877
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.