Answers for "how to count the rows of gridview in asp.net using jquery"

0

how to count the rows of gridview in asp.net using jquery

<script type="text/javascript">
    $(function () {
        $("[id*=btnGetCount]").click(function () {
            var totalRowCount = $("[id*=GridView1] tr").length;
            var rowCount = $("[id*=GridView1] td").closest("tr").length;
            var message = "Total Row Count: " + totalRowCount;
            message += "\nRow Count: " + rowCount;
            alert(message);
            return false;
        });
    });
</script>
Posted by: Guest on May-12-2020

Code answers related to "how to count the rows of gridview in asp.net using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language