Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Browser Compatible and Check

Status
Not open for further replies.

DougHomeOffice

Programmer
Oct 31, 2001
37
0
0
US
On my home page how can I

Check what Browser the client is using and suggest upgrading etc.

Or if anyone hasany other solutions to these sort of problems.
 
Dim objBrowser
Dim colBrowser
Set objBrowser = Server.CreateObject(MSWC.BrowserType")

'Get Browser's Info
colBrowser = objBrowser("xxxxx")
Response.Write colBrowser

xxxxx get's :

version 'for browser's version
majover 'for browser's majover version
minorver 'for browser's minorver version
frames 'return's you a true or faulse value
tables 'return's you a true or faulse value
cookies 'return's you a true or faulse value
backroundsounds 'return's you a true or faulse value
vbsript 'return's you a true or faulse value
javaapplets 'return's you a true or faulse value
javascript 'return's you a true or faulse value
ActiveXControls 'return's you a true or faulse value
...
...
...



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top