I created simple markup like.
<html>
<head>
<head>
<body>
<input type="text" style="text-transform:uppercase" />
</body>
</html>
I assumed that the browser will use all resources and, indeed, has been converted
In my business layer, I assume that the browser will submit the form data in uppercase format also when the submit method is executed.
My problem is that when I get the data on my Spring controller, its not uppercase, and I need to do the capitalization myself.
Any idea?
source
share