Forum Moderators: DixonJones
Anyway, to get an idea of toolbar use on your site, if you can access your server's access log, search it and see what kinds of agents come up. Here's a selection from my log, in no particular order:
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Blingo Toolbar 1.0; .NET CLR 1.1.4322)"
"Mozilla/4.0 (compatible; GoogleToolbar 4.0.513.2948-big; Windows XP 5.1; MSIE 6.0.2900.2180)"
"Mozilla/4.0 (compatible; GoogleToolbar 3.0.128.1-big; Windows XP 5.1)"
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; .NET CLR 1.1.4322)"
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Alexa Toolbar; InfoPath.1; .NET CLR 2.0.50727)"
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Every Toolbar; SIMBAR Enabled; .NET CLR 1.1.4322)"
"Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.2; Windows NT 5.1; SV1; Alexa Toolbar)"
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; CursorZone Grip Toolbar 2.08; .NET CLR 1.1.4322)"
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Grip Toolbar 2.07a)"
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Rare-Lyrics Toolbar; .NET CLR 1.1.4322)"
How you block people with toolbars identified in their UA strings depends on what kind of server you have, its capabilities, and whether you can use them. (For example, if your server is running Apache, and mod_rewrite is installed, and you can use .htaccess files, you can block UA strings containing the words Toolbar and toolbar.)
<object id="googleBar" classid="clsid:00EF2092-6AC5-47c0-BD25-CF2D5D657FEB" style="display:none;"></object>
<script type="text/javascript">
if(window.attachEvent && document.googleBar && typeof(googleBar.Search)!= "undefined")
{
toolbar was detected, put your code here.
}
</script>
Similarly you can check for other ToolBars also.
You can then use that information to directly target services and features to that visitor.
For example, Google allows publishers to create a custom toolbar button that the visitor can add to their toolbar.
[google.com...]