Q
|
I want to detect WebTV devices - how do I use BrowserHawk to do this?
|
A
|
For WebTV the Browser property will equal "WebTV".
<%
set bh = Server.CreateObject("cyScape.browserObj")
if bh.Browser = "WebTV" then
'user has web tv - handle however you wish
end if
%>
|