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

HTML doesn't work for FIREFOX

I don't what is wrong my site but some of my members cant view it on
firefox. I been browsing the net for answer but i havent find the
solution. Some said add
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"which
was already there when i first started. Everything is find on internet
explorer.
Can someone help me?
My site is http://symbolsclan.co.nr/
I use micosoft frontpage to edit and create my website.
thks in advance.

sry if i posted in the wrong section

Jan 6 '07 #1
8 5943
vi********@msn.com wrote:
I don't what is wrong my site but some of my members cant view it on
firefox. I been browsing the net for answer but i havent find the
solution. Some said add
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"which
was already there when i first started. Everything is find on internet
explorer.
Can someone help me?
My site is http://symbolsclan.co.nr/
I use micosoft frontpage to edit and create my website.
thks in advance.

sry if i posted in the wrong section
Yeah, ASP is server-side technology so this has nothing to do with ASP. Try
one of these:
http://groups.google.com/groups/dir?sel=33584039

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jan 6 '07 #2
vi********@msn.com wrote:
I don't what is wrong my site but some of my members cant view it on
firefox. I been browsing the net for answer but i havent find the
solution. Some said add
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"which
was already there when i first started. Everything is find on internet
explorer.
Can someone help me?
My site is http://symbolsclan.co.nr/
I use micosoft frontpage to edit and create my website.
thks in advance.
Here are the response headers for one of your broken pages:

Response Headers - http://home.comcast.net/~symbolsclan/news.php
Server: Netscape-Enterprise/4.1
Date: Sat, 06 Jan 2007 15:46:33 GMT
Content-Type: text/plain
Etag: "b192920d-3-849-459f64e9"
Last-Modified: Sat, 06 Jan 2007 08:59:21 GMT
Content-Length: 2121
Accept-Ranges: bytes

200 OK

Note that the Content-Type should be "text/html" if you want the browser to
treat it like HTML. Firefox is handling your document perfectly -- rendering
the content the way you instruct it.

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.
Jan 6 '07 #3
Bob Barrows [MVP] wrote:
>My site is http://symbolsclan.co.nr/
I use micosoft frontpage to edit and create my website.
thks in advance.

sry if i posted in the wrong section
Yeah, ASP is server-side technology so this has nothing to
do with ASP. Try one of these:
http://groups.google.com/groups/dir?sel=33584039
Bob,

This clearly IS a server-side issue, and certainly *could* have been an ASP
one. One look at the page will convince you that the SRC for each of two
IFRAMEs is an HTML document sent as text/plain. I'm sure you'll agree this
could happen with ASP (although it is hard to imagine a scenario in which it
wasn't obvious that content-type was deliberately broken).

In any case, this isn't an ASP for only one reason -- the document in
question was PHP (and the server was not IIS).

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.
Jan 6 '07 #4
Dave Anderson wrote:
Bob Barrows [MVP] wrote:
>>My site is http://symbolsclan.co.nr/
I use micosoft frontpage to edit and create my website.
thks in advance.

sry if i posted in the wrong section
Yeah, ASP is server-side technology so this has nothing to
do with ASP. Try one of these:
http://groups.google.com/groups/dir?sel=33584039

Bob,

This clearly IS a server-side issue,
I don't understand. How is the way firefox renders html controlled by
server-side code?

Sure, html is generated by ASP, but why does that make it a server-side
issue? One needs to know w=how to create an html page first ...

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jan 6 '07 #5
Bob Barrows [MVP] wrote:
I don't understand. How is the way firefox renders html controlled
by server-side code?
You're joking, right?

Is Response.ContentType client-side or server-side? His script sends a text
document to the browser with Content-Type header "text/plain". Is there any
way OTHER than server-side to send the proper Content-Type for a browser to
render HTML as HTML?


--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.
Jan 6 '07 #6
Dave Anderson wrote:
Bob Barrows [MVP] wrote:
>I don't understand. How is the way firefox renders html controlled
by server-side code?

You're joking, right?

Is Response.ContentType client-side or server-side?
Server-side, of course. But knowing what contenttype to set depends on
knowing what html will render in the browser.

And how is Response.ContentType firefox-specific?

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jan 6 '07 #7
I suspect your problem is developing with Frontpage.

That product is very unlikely to produce cross browser compatible output, is now defunct and I doubt if it ever produced standard
compliant html


<vi********@msn.comwrote in message news:11**********************@42g2000cwt.googlegro ups.com...
>I don't what is wrong my site but some of my members cant view it on
firefox. I been browsing the net for answer but i havent find the
solution. Some said add
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"which
was already there when i first started. Everything is find on internet
explorer.
Can someone help me?
My site is http://symbolsclan.co.nr/
I use micosoft frontpage to edit and create my website.
thks in advance.

sry if i posted in the wrong section

Jan 6 '07 #8
Bob Barrows [MVP] wrote:
And how is Response.ContentType firefox-specific?
It isn't. He actually has an IE-specific problem. IE should not render
text/plain documents as anything other than plain text. Since IE
"interprets" the document to be HTML, it renders it as HTML, giving the
author the false impression that his web script/application is operating
correctly.

Firefox happens to treat the content correctly, which is to say consistent
with the content type provided. To the OP, this looks like a Firefox
problem, when it is actually a problem with his script or his server
configuration. IE just shamefully looks the other way.


--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.
Jan 6 '07 #9

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

Similar topics

10
by: john T | last post by:
Is there anyway to vertically center a html table using css in such a way it does not alter the html table. When I tryied it just screws up.
25
by: Steal | last post by:
Hi at all I try to validate this page using the link: http://validator.w3.org/ but it return that this is not a valid HTML 4.01 page please where is it error? Steil <!DOCTYPE HTML PUBLIC...
22
by: Trammel | last post by:
Hi, I am here to request support from anyone that has idea's on cross-browser HTML (Mainly Firefox and IE). My personal website http://trammel.no-ip.info works fine on Firefox but IE decides to...
9
by: Veerle | last post by:
Hi, I would like to divide the whole of my html page in 4 equal rectangles using only div tags in my html. The result should look a bit like this site:...
82
by: Eric Lindsay | last post by:
I have been trying to get a better understanding of simple HTML, but I am finding conflicting information is very common. Not only that, even in what seemed elementary and without any possibility...
12
by: e271828 | last post by:
Hi, I'm helping to work a developer tool that verifies a given HTML element has a given attribute (e.g., that all LABEL elements have a FOR attribute, all INPUT elements have an ID attribute,...
12
by: vietgurlqt | last post by:
I don't what is wrong my site but some of my members cant view it on firefox. I been browsing the net for answer but i havent find the solution. Some said add <!DOCTYPE HTML PUBLIC "-//W3C//DTD...
16
by: Eric | last post by:
I have a user of a web application written in Java/JSP that is unable to login to the site simply because certain links on the page do not run when they are clicked. Other popups using Javascript...
3
by: paul.rusu | last post by:
Hi, I am having the html tidy in c# issue. I parse a lot of html pages with sports data. For this I need them converted in xml. I am using html tidy libraries: zetaHtmlTidy from codeproject,...
7
by: Zhang Weiwu | last post by:
Dear all How does javascript realiablily tell if a variable is a reference to an HTML Element "<select>", without causing browser to pop up error message? if (variable.constructor ==...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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:
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.