Actually I have a scenario like :
I am getting the values of checked records in GridView through Javascript. Now i need to send those values to controller for deleti
You can use AJAX inside your script.
Something like this
$.ajax({ url: 'Your method in controller which will delete the records', type: 'POST', data: ' data which you want to send to controler ', });