G
George
VS.NET 2002\Web\VB
This is what Request.UserAgent returns for Mozilla Firebird:
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007
Firebird/0.7
Is there any reason why this shouldn't work to identify a visitor using that
browser?
If String.Compare(Request.UserAgent, "firebird", True) = True Then
This is what Request.UserAgent returns for Mozilla Firebird:
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007
Firebird/0.7
Is there any reason why this shouldn't work to identify a visitor using that
browser?
If String.Compare(Request.UserAgent, "firebird", True) = True Then
Code:
End If
Using Mozilla Firebird, it jumps right over it. As a test, I replaced
"firebird" with "msie," and it catches the IE browser with no problem. So
why not firebird?
I can't use browser name or browser type because it returns Netscape, not
Firebird.
Thanks,
George