File Download in javascript using AJAX call
问题 This is my java script code for downloading the file from database on button click, when the button clicks this function calls. using ajax call i have moved to handler. function DownloadDocument() { var CurrentUserEmpId = CurrentSelectedUser; Ext.Ajax.request({ url: "UploadAttachment.ashx?mode=DownloadDocument&EmployeeId=" + CurrentUserEmpId, success: function (response) { var data = response.responseText; }, failure: function (form, action) { } }); } Here comes the handler page, I have got