In My Application there almost 40 TextBox Controls.
It should accept only Capital letters and if user enters small letters also it should convert the text into CAPITAL LETTERS automatically...
Anybody plz suggest me a solution which satisfies my requirement exactly or else partially either using JavaScript or jQuery or even C#,,anything is ok for me,,,,
Thanks In Advance,
Regards,
Sathish Pabbathi
Riyaz AkhtarPosted Jul 5, 2013, 7:03 AM
aspx:
javascript:
Iftikar HussainPosted Jul 5, 2013, 4:53 AM
You can do another simplest way
in css
no need to set any css class for textbox control
Regards,
Iftikar
HyunHo CheaPosted Jul 5, 2013, 4:23 AM
And If were you, I use JQuery like this.
# Below sentence insert on attribute of textBox.
onchange = "transCapitalLetter(this)";
# Write the function in