Monday, January 10, 2022

All Capital

1.  All capital in jquery

<script>

$(function () {

        $("input[type='text']").keyup(function () {

            this.value = this.value.toUpperCase();

        });

    });

</script>

No comments:

Post a Comment

Raw Insert query in EF8 or Entity Framwork 8

          public async Task<object> InsertRack(Rack RackInsert)         {             try             {                 sql = " i...