Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q1502 How can I detect what browser is hitting my site and what its capabilities are?

irt.org | Knowledge Base | HTML | Q1502 [ previous next ]

Q1502 How can I detect what browser is hitting my site and what its capabilities are?

The best way to do this is by using a third party ASP component called BrowserHawk. This component automatically detects the visiting browser and all of its capabilities - such as the browser type, version, language, platform - as we as other things such as disabled JavaScript, cookies, installed plugins, user connection speed and more. A free trial of BrowserHawk is available at http://www.cyscape.com.

<HTML>
<%
'This code requires BrowserHawk 2000 to be installed.
'You can download a free trial from http://www.cyscape.com

Set bh = Server.CreateObject("cyScape.browserObj")
response.write "Your browser is: " & bh.browser & "<BR>"
response.write "Version: " & bh.version & "<BR>"
response.write "Platform: " & bh.platform & "<BR>"

'For more details on what you can check see http://www.cyscape.com/showbrow.asp
%>
</HTML>

Submitted by cyScape Support


Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.