Determine the type of browser
Hello all,
I am not sure if I am posting this question in the right forum,
anyway I am working on a JSF project. I have some tags in my jsp pages
for e.g.
<h:inputText size="20" value="#{authentication.userName}" />
<h:inputSecret size="20" value="#{authentication.password}" />
the problem is - the two JSF components above are displayed differently in deifferent browsers. In firefox and IE7, they are displayed without any problem,
however in IE6 the inputSecret looks smaller in size than inputText.
So how do I need some way to identify the kind of browser and its version details and based on which i will make the appropriate changes in my css file.
is there some simple method to find the browser type in jsp?

