hello friends...
i want to get the browser name is asp code without using js and include the css file depending upon the browser of the user.
i dont want to use js. because i am unable to include file in js.
what i did in js is ---
var browser=navigator.appName;
var b_version=navigator.appVersion;
var version=parseFloat(b_version);
if(navigator.appName =="Netscape")
{
//document.write("Mozila or Safari")
// want to include css
}
else
{
//document.write("IE")
// want to include css
}
please help.