Hi,
I created a simple markup such as this.
<html>
<head>
<head>
<body>
<input type="text" style="text-transform:uppercase" />
</body>
</html>
I was assuming that the browser will capitalize all inputs and indeed it was transformed
In my business layer, I am assuming that browser will send the form data on Upper case format also when I perform Post Method.
My problem is, when I receive the data at my Spring Controller, its not capitalize and I need to perform the capitalization myself.
Any idea?