How to stop page refresh on button click using c
If you want to avoid full page refresh, then don’t use UpdatePanel control as it will only give more pain the butt. Instead, use AJAX with client-side grid (e.g jQuery grid, Webgrid, etc) and handle everything at the client (JavaScript code). How do I stop my page from reloading on button click? If you want to avoid full page refresh, …