Hi,
add into your global.asa.
Sub Session_OnStart
set BC = server.createobject("MSWC.BrowserType")
IPAddress = Request.ServerVariables("remote_addr")
/////you can also retreive the follow from the HTTP Header
UserAgent = Request.Servervariables ("HTTP_USER_AGENT")
Browser = BC.Browser & " " & BC.Version
DHTMLSupport = cstr(BC.dhtml)
FramesSupport = cstr(BC.frames)
TablesSupport = cstr(BC.tables)
CookiesSupport = cstr(BC.cookies)
BackGroundSounds = cstr(BC.backgroundsounds)
JavaScriptSupport = cstr(BC.javascript)
JaveAppletsSupport = cstr(BC.javaapplets)
ActiveXControlsSupport = cstr(BC.activexcontrols)
AOL = cstr(BC.aol)
Platform = cstr(BC.platform)
VBScriptSupport = cstr(BC.vbscript)
FullReferer = Request.ServerVariables("http_referer")
End Sub
Hope this helps
----------------------------------
Bookmarks