ASP.NET Firefox Rendering Anomalies Documented?

  • Thread starter Thread starter clintonG
  • Start date Start date
C

clintonG

I'm hoping somebody has started a table documenting Firefox rendering
anomalies or can refer to this type of document.
Neither text nor textboxes are not being sized the same as IE and there are
probably other issues. The same appears to be true of Netscape.
 
clintonG said:
I'm hoping somebody has started a table documenting Firefox rendering
anomalies or can refer to this type of document.
Neither text nor textboxes are not being sized the same as IE and there
are
probably other issues. The same appears to be true of Netscape.

Bear in mind it may be an IE rendering anomaly... also check font sizes and
things. You could also try it on a number of systems to see if there's
anything machine specific that affects it.

Steve
 
I've discovered -- from others -- that the Firefox and Netscape browsers
have been declared in the machine.config as 'down-level' browsers. The
machine.config or web.config must be modified to include the following...

<browserCaps>
<case match="Gecko/[-\d]+">
browser=Netscape
frames=true
tables=true
cookies=true
javascript=true
javaapplets=true
ecmascriptversion=1.5
w3cdomversion=1.0
css1=true
css2=true
xml=true
tagwriter=System.Web.UI.HtmlTextWriter
<case match="rv:1.0[^\.](?'letters'\w*)">
version=6.0
majorversion=6
minorversion=0
<case match="^b" with="${letters}">
beta=true
</case>
</case>
<case match="rv:1(\.\d+)(\.\d)?(?'letters'\w*)">
version=7.0
majorversion=7
minorversion=0
<case match="^b" with="${letters}">
beta=true
</case>
</case>
</case>
</browserCaps>


--
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
 
Back
Top