Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use jquery to call web-api, the ApiController will return a HttpResponseMessage, example:

HttpResponseMessage result = new HttpResponseMessage(HttpStatusCode.OK);
result.Content = new StreamContent(File.OpenRead("D:\\Images\\heroAccent.png"));
result.Content.Headers.ContentType = 
                         new MediaTypeHeaderValue("application/octet-stream");
result.Content.Headers.ContentDisposition = 
                         new ContentDispositionHeaderValue("attachment");
result.Content.Headers.ContentDisposition.FileName = "file.png";
return result; 

I want to add file stream on it and use jquery ajax call back function(data param:octet-stream) to popup me a download,Please show me some example code!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.