Do you think this code is pretty solid, or would you recommend something else? It would happen on page load. I am just using the Response.write's as examples. Realistically, I would have blocks of code to execute.
<% If Request.Browser.Browser = "IE" Then
Response.Write("hello internet explorer")
ElseIf Request.Browser.Browser = "AppleMAC-Safari" Then
Response.Write("apple apple apple")
ElseIf Request.Browser.Browser = "Firefox" Then
Response.Write("fire!")
Else
'nothing
end if
%>