jeg kan ikke få det til at virke, er det ikke sådan her du mener jeg skal sætte det op.?
<%
dim browsertype
browsertype = Request.ServerVariables("HTTP_USER_AGENT")
'an example of what browsertype might look like is this:
'Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)
'you can then parse that value -- for example, check if "MSIE" is in the string'
If browsertype.indexOf("MSIE") > 0 Then %>
<!--#Include File="menu.asp"-->
<% Else %>
<!--#Include File="menu_andet.asp"-->
<% End If %>