I have an httphandler that creates a zip file and returns it for download.
context.Response.AppendHeader("content-disposition", "attachment; filename=myfile.zip");
Is it possible to call the handler from a jquery ajax call? If yes, what kind of dataType should I declare?
Thanks