vote up 4 vote down star

I'm writing an asp.net application. I have a textbox on a webform and I want to force whatever the user types to upper case. I'd like to do this on the front end. You should also note that there is a validation control on this textbox, so I want to make sure the solution doesn't interfere with the asp.net validation.

Clarification: It appears that the CSS text-tranform makes the user input appear in uppercase, however under the hood, it's still lower case as the validation control fails. You see, my validation control checks to see if a valid state code is entered, however the regex expression I"m using only works with uppercase characters.

flag

62% accept rate
Are you intentionally limiting your regex to only working with uppercase characters? By your wording it sounds like you might not be aware that regex implementations typically support a case-sensitive switch. – J c Oct 14 '08 at 19:27
I'm not a regex expert. I know of know way to support both upper and lower case State code comparisions in the regex beside duplicating every state code twice (upper and lower). I thought it would be cleaner just converting the input box to uppercase. – Aheho Oct 14 '08 at 19:37
1  
No worries - I'd recommend using something like the following (C#) instead of modifying the user input though: Regex re = new Regex("myExpression", RegexOptions.IgnoreCase); – J c Oct 17 '08 at 11:57

11 Answers

vote up 3 vote down

Use a css style on the text box. Your css should be something like this:

.uppercase { text-transform: uppercase; }

<asp:TextBox ID="TextBox1" runat="server" Text="" CssClass="uppercase"></asp:TextBox>
link|flag
The REGEX validator will still fail with a purely CSS solution. – Stephen Wrighton Oct 14 '08 at 21:37
vote up 0 vote down

Set the style on the textbox as text-transform: uppercase?

link|flag
vote up 0 vote down

Javascript has the "toUpperCase()" function of a string.

So, something along these lines:

function makeUpperCase(this)
{
this.value = this.value.toUpperCase();
}
link|flag
That will only change it after, no as they type it. – Diodeus Oct 14 '08 at 19:02
You could append this function to the onchange event of the text area and it would update it on the fly, though it would be a little bit slow. CSS is the way to go IMHO. – Tom Oct 14 '08 at 19:20
1  
@diodeus - if you use TextChange event then it'll occur as they top. @Tom - does the CSS actually change the underlying ASCI or just how it's displayed? – Stephen Wrighton Oct 14 '08 at 20:10
@Stephen - That's a really good question! I created a small page to test this out and it appears that CSS only changes the way that it appears not the underlying ASCII. – Tom Oct 14 '08 at 21:18
1  
@Tom - That's what I thought, as such, it needs to occur via JS rather than CSS in order for the validator to fire correctly – Stephen Wrighton Oct 14 '08 at 21:36
vote up 0 vote down
 style='text-transform:uppercase'
link|flag
vote up 0 vote down

CSS could be of help here.

style="text-transform: uppercase";"

does this help?

link|flag
vote up 1 vote down

Use the text-transform CSS for the front-end and then use the toUpper method on your string server-side before you validate.

link|flag
The validation control that's failing runs client-side. – Aheho Oct 14 '08 at 19:39
vote up 1 vote down

I just did something similar today. Here is the modified version:

<asp:TextBox ID="txtInput" runat="server"></asp:TextBox>
<script type="text/javascript">
    function setFormat() {
        var inp = document.getElementById('ctl00_MainContent_txtInput');
        var x = inp.value;
        inp.value = x.toUpperCase();
    }

    var inp = document.getElementById('ctl00_MainContent_txtInput');
    inp.onblur = function(evt) {
        setFormat();
    };
</script>

Basically, the script attaches an event that fires when the text box loses focus.

link|flag
I don't get this. Where did you get the id 'ctl00_MainContent_txtInput' from? – Aheho Oct 15 '08 at 1:25
ASP.NET translates your IDs. You can figure them out by viewing the source of the page you are working with. ctl00 is the generic prefix (but it can be different), MainContent just happened to be the name of the Form that the control was placed in. – Jason Z Oct 15 '08 at 3:36
Couldn't this potentially break when moving to a newer version of ASP.NET? – Aheho Oct 15 '08 at 11:55
1  
Possibly, but you could always use a unique text box name and a JavaScript framework like jQuery and find the control where the unique name matches a pattern. I was trying to keep the sample code simple. – Jason Z Oct 15 '08 at 12:54
2  
There's a better way to get the client id -> <%= TextBox1.ClientID %>. That would render the correct ID. – Cyril Gupta Aug 28 at 4:52
vote up 5 vote down

Why not use a combination of the CSS and backend? Use style='text-transform:uppercase' on the TextBox, and in your codebehind use Textbox.Value.ToUpper();

You can also easily change your regex on the validator to use lowercase and uppercase letters. That's probably the easier solution than forcing uppercase on them.

link|flag
1  
I'd go with ToUpper(). Why would you want to enforce such restrictions on the end-user? That's not a friendly UI. Take whatever the user gives you and make it upper case yourself. – Kon M Oct 14 '08 at 21:36
vote up 5 vote down

You can intercept the key press events, cancel the lowercase ones, and append their uppercase versions to the input:

window.onload = function () {
    var input = document.getElementById("test");

    input.onkeypress = function () {
        // So that things work both on FF and IE
        var evt = arguments[0] || event;
        var char = String.fromCharCode(evt.which || evt.keyCode);

        // Is it a lowercase character?    
        if (/[a-z]/.test(char)) {
            // Append its uppercase version
            input.value += char.toUpperCase();

            // Cancel the original event
            evt.cancelBubble = true;
            return false;
        }
    }
};

This works in both FF & IE. You can see it in action here.

link|flag
But it doesn't work if the user tries to type in the middle of the text. – erikkallen Sep 27 at 16:37
vote up 1 vote down
<!-- Script by hscripts.com -->
<script language=javascript>
function upper(ustr)
{

    var str=ustr.value;
    ustr.value=str.toUpperCase();
}

function lower(ustr)
{

    var str=ustr.value;
    ustr.value=str.toLowerCase();
}


</script> 
<form>
Type Lower-case Letters<textarea name="address" onkeyup="upper(this)"></textarea>
</form>

<form>
Type Upper-case Letters<textarea name="address" onkeyup="lower(this)"></textarea>
</form>
link|flag
vote up 2 vote down

I would do this using jQuery.

<script src="Scripts/jquery-1.3.2.js" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function() {
        $("#txt").keydown(function(e) {
            if (e.keyCode >= 65 & e.keyCode <= 90) {
                val1 = $("#txt").val();
                $("#txt").val(val1 + String.fromCharCode(e.keyCode));
                return false;
            }
        });
    });
</script>

You must have the jquery library in the /script folder.

link|flag
This version works as the user types. – Cyril Gupta Aug 28 at 5:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.