HTML doesn"t work for FIREFOX
HTML doesn"t work for FIREFOX
am 06.01.2007 14:14:00 von vietgurlqt
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
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
Re: HTML doesn"t work for FIREFOX
am 06.01.2007 14:22:48 von reb01501
vietgurlqt@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
> 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"
Re: HTML doesn"t work for FIREFOX
am 06.01.2007 16:50:58 von Dave Anderson
vietgurlqt@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
> 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.
Re: HTML doesn"t work for FIREFOX
am 06.01.2007 17:02:17 von Dave Anderson
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.
Re: HTML doesn"t work for FIREFOX
am 06.01.2007 17:30:05 von reb01501
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"
Re: HTML doesn"t work for FIREFOX
am 06.01.2007 17:57:38 von Dave Anderson
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.
Re: HTML doesn"t work for FIREFOX
am 06.01.2007 18:19:31 von reb01501
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"
Re: HTML doesn"t work for FIREFOX
am 06.01.2007 18:32:44 von Jon Paal
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
wrote in message news:1168089240.306281.260210@42g2000cwt.googlegroups.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
> 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
>
Re: HTML doesn"t work for FIREFOX
am 06.01.2007 22:29:04 von Dave Anderson
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.