My goal is to use the jQuery event .keyup() to convert inputted lowercase chars to uppercase.
How can I achieve this?
Make sure that the field has this attribute in its html.
ClientIDMode="Static"
and then use this in your script:
$("#NameOfYourTextBox").change(function () { $(this).val($(this).val().toUpperCase()); });