How to convert lowercase letters into uppercase letters in the text box

Source: Internet
Author: User

In the system, there is a text box that requires uppercase letters. But the user does not realize it, so he has to control it in the program.

In the webpage, pull a TextBox Control:

Copy codeThe Code is as follows: <asp: TextBox ID = "TextBoxSeriesNumber" runat = "server"> </asp: TextBox>

To write a Javascript script, you can use the onkeyup event to instantly convert letters to uppercase letters:Copy codeThe Code is as follows: <script type = "text/javascript">
Window. onload = function (){
Var textBox = document. getElementById ("<% = TextBoxSeriesNumber. ClientID %> ");

TextBox. onkeyup = function (){
This. value = this. value. toUpperCase ();
};
};
</Script>

Demo:

The following content is added:
In the above method, there is a problem: the lower-case letters are displayed first, and then converted to the upper-case letters. When searching for other materials on the Internet, I did not intend to find a better method, that is, using CSS to achieve:
Style = "text-transform: uppercase ;"
The complete application is as follows:

Description of text-transform style attributes:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.