简体   繁体   中英

AJAX MaskedEditExtender turn input letters into uppercase

Can anyone please tell me how to turn all input to uppercase in a textbox with MaskedEditExtender AJAX control?

Thanks

AJAX MaskedEditExtender mostly provides masking for things like telephone numbers, dates and postal codes, you don't need to use it to convert input to upper case.

You can easily convert it to upper case using very little javascript:

<asp:TextBox ID="txtName" onkeyup="this.value = this.value.toUpperCase();" runat="server" />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM