22/03/2006, 05:43
|
| | Fecha de Ingreso: enero-2006 Ubicación: Madrid
Mensajes: 148
Antigüedad: 19 años Puntos: 0 | |
Para sacar el navegador yo lo tengo así aunque quiza haya maneras mas sencillas, esto desde luego funciona:
Código:
<% ua = Request.ServerVariables("HTTP_USER_AGENT")
If Instr(ua, "MSIE") Then
If(Instr(ua, "MSIE 5.") or Instr(ua, "MSIE 4.") or Instr(ua, "MSIE 3.") or Instr(ua, "MSIE 3.02") or Instr(ua, "MSIE 6.")) and Instr(ua, "Opera")=0 Then
Browser = "Microsoft Internet Explorer"
Else
if Instr(ua,"Opera") then
Browser = "Opera"
end if
end if
Else
if Instr(ua, "Firefox") then
Browser="Firefox"
else
if Instr(ua, "Netscape") then
Browser = "Netscape"
else
Browser = "Otro"
end if
End If
end if
%>
|