I have an ASP.NET Web Application where I am utilizing a BulkEditGridView to create an order form. This GridView allows users to edit all rows simultaneously. Within the grid, there is a column that calculates the total cost for each item (cost x quantity), as well as a grand total field at the bottom of the page. Currently, these fields only update on every post-back. I am looking for a way to dynamically update these fields so that when users modify quantities, the totals and grand total reflect the changes in real-time. I have tried using AJAX solutions for this task, but the asynchronous post-backs cause issues with the user experience on the page. I believe that there must be a client-side solution available, and I am hopeful that someone from the community can provide some insights.