I am using Jquery boot grid with asp.net gridview as follows.
$(function () {
$('#<%= MyGridview.ClientID %>').bootgrid({
caseSensitive: false
});
});
When i filter the grid using the Search provided by boot grid, i would like to export the filtered rows to Excel. Is there a way to do this.
Thanks