1
116
In any give field, how can I force upper case, or lower for that matter if
needed.
Thanks
David
needed.
Thanks
David
Jon Spivey said:For a form you're probably better using javascript to force upper case -
this way the form field contents will display to your user and be sent to
your server in upper case.
<input type="text" onkeyup="this.value=this.value.toUpperCase();"
name="whatever" />
or for lower case
<input type="text" onkeyup="this.value=this.value.toLowerCase();"
name="whatever" />
.