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" />