and... my final question...!
I am using this code to get the browser type:
<%=Request.ServerVariables("HTTP_USER_AGENT")%> = "a long list of browser type here"
and in my sql database I will write like this:
SELECT * FROM mydatabase WHERE browser = "a long list of browser type here"
Is there a way for me to get the result like this:
browser = Firefox or EI7 or Safari or IE6.. instead of the long list I get from the code above?
Thanks..