user_agent = request.servervariables("HTTP_USER_AGENT")
if InStr(user_agent,"MSIE") > 0 then
position = "absolute"
else
position = "fixed"
end if
These codes above is good to sniff out IE with the rest of the browser in ASP.
Read More »
if InStr(user_agent,"MSIE") > 0 then
position = "absolute"
else
position = "fixed"
end if
These codes above is good to sniff out IE with the rest of the browser in ASP.