Código fuente de 'Detecta el navegador 2.asp'
<html>
<head>
<title>Detecta el navegador 2 - Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>
<p align="center"><b><font size="3">Detecta el navegador 2</font></b>
<body style="font-family: Arial; font-size: 11pt">
</p>
<br>
<br>
<%
Dim strAgent
strAgent=Request.ServerVariables("HTTP_USER_AGENT")
If InStr(strAgent , "MSIE") Then
response.write "Navegador MSIE<br>"
response.write strAgent %><% Else
response.write "Navegador distinto a MSIE<br>"
response.write strAgent
End If %>
</body></html>