[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index] [Home]

RE: Case sensitive request.getParameter


John,

If you are calling ServletRequest.getParameter(), the first thing that you
should notice is that we can exclude GNUJSP from the issue.  That is a
SERVLET class, not a GNUJSP class.  :-)

That issue aside, you should check the HTML specification
(http://www.w3c.org/), but parameters may indeed be case sensitive.

On the Java side, when you create Beans to match forms, you'll find that the
names will be mapped to the naming convention described for Java Reflection.

	--- Noel