Re: Way to detect which browser

2000-06-25 Thread Gunaseelan Nagarajan
There is a html header which will let you know the browser. I think it is "User-Agent". so you code would be if(request.getHeader("User-Agent").equals("mozilla.. another alternative would be to use methods in javascript, called "browser-sniffers". just search in google and you will get links

Re: Way to detect which browser

2000-06-25 Thread Sven van 't Veer
"Aggarwal, Pawan" wrote: Hi All, Is there any program which can detect what browser and what version is one using... so that to work out different javascript for them.. Javascript === To unsubscribe: mailto [EMAIL

Re: Way to detect which browser

2000-06-25 Thread Teodor Cimpoesu
Hi Sven! On Sun, 25 Jun 2000, Sven van 't Veer wrote: "Aggarwal, Pawan" wrote: Hi All, Is there any program which can detect what browser and what version is one using... so that to work out different javascript for them.. you can parse User-Agent request header and make a guess.