Forum Moderators: open
If that doesn't work, you may need to modify your machine.config file, located in
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG
There are descriptions of the various browsers in there and their capabilities.
Greg
This is the browserCaps I generally use. Just put in the system.web in the web.config. It was taken from another source, but can't remember where:
<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="${etters}">
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>
Google browserCaps if you wan to learn more.