Ver Mensaje Individual
  #7 (permalink)  
Antiguo 22/03/2006, 05:43
kalandas
 
Fecha de Ingreso: enero-2006
Ubicación: Madrid
Mensajes: 148
Antigüedad: 18 años, 3 meses
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

%>