Issue: Export to Excel Functionality developed using Telerik Grid doesnt work in IE 11 browser. In one my applications the Export to excel Functionality is not working in IE 11. When the export to Excel Functionality is button is clicked , it gives a blank excel workbook without any data in IE 11 browser where as this works fine in IE 8 browser. I have attached the document with screenshots. Code snippets: //Start- script to enable controls after export to excel if (typeof (_spBodyOnLoadFunctionNames) != 'undefined' && _spBodyOnLoadFunctionNames != null) { _spBodyOnLoadFunctionNames.push("supressSubmitWraper"); } function supressSubmitWraper() { _spSuppressFormOnSubmitWrapper = true; } //End- script to enable controls after export to excel function click_handlerConsumptionReport() { theForm.__EVENTTARGET.value = '__Page'; theForm.__EVENTARGUMENT.value = 'Export'; theForm.submit(); theForm.__EVENTARGUMENT.value = ''; }