How to Export to excel with filename using javascript.RMRadha Merikanapalli8yAsked Apr 6, 2018, 5:08 AM1k.NET EXPORT $("[id$=btnexport]").click(function (e) { window.open('data:application/vnd.ms-excel,' + encodeURIComponent($('#divrkapreport').html())); e.preventDefault(); });
Replies
Know the answer? Post it — somebody with the same question will find it here.