Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我如何使用 MaskedEditExtender AJAX 控件将文本框中的所有输入转换为大写?
谢谢
AJAX MaskedEditExtender 主要为电话号码、日期和邮政编码等内容提供屏蔽,您不需要使用它将输入转换为大写。
您可以使用非常少的 javascript 轻松将其转换为大写:
<asp:TextBox ID="txtName" onkeyup="this.value = this.value.toUpperCase();" runat="server" />