Date:  01/27/2003 02:43:00 PM Msg ID:  001296
From:  FoxWeb Support Thread:  001294
Subject:  Re: Upper-case data entry
Why don't you simply convert the data uppon receipt by FoxWeb?  Just use the UPPER function:
 
M.LastName = UPPER(Request.Form("LastName"))
 

FoxWeb Support Team
support@foxweb.com email

Sent by Alan Harris-Reid on 01/27/2003 07:01:05 AM:
I have an input textbox on a form in which I want upper-case characters only, to which end I am using style="text-transform:uppercase" in the HTML input definition.  Text is converted to upper-case upon data-entry, but when the value is posted, it is passed in the entered case, not always uppercase.
 
How can I ensure that entered data AND posted value are both uppercase?  I would prefer a HTML/CSS solution if possible, but failing that, JavaScript will do.
 
TIA
Alan