Thanks
David
David
See tutorials at http://www.w3schools.com
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"116" <1...@discussions.microsoft.com> wrote in message
news:D3294DD5-2F07-483D...@microsoft.com...
David
"Ronx" wrote:
> .
>
<input name="Text1" type="text" style="text-transform: uppercase;" >
However, it is unlikely the text will be sent to the server as uppercase
when the form is submitted - but your form handler can change it if using
PHP, asp or asp.NET - FrontPage extensions will not change the case.
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"116" <1...@discussions.microsoft.com> wrote in message
news:15E09FA8-45AF-4AD3...@microsoft.com...
<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" />
"116" <1...@discussions.microsoft.com> wrote in message
news:15E09FA8-45AF-4AD3...@microsoft.com...
David
"Jon Spivey" wrote:
> .
>