Click here to Skip to main content
15,895,656 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
In my application I have a requirement where the client/user needs to download video files from the server to their local machine.

I have to do this using C# MVC - can anyone help me by providing some ideas, coding to implement this.
Posted
Comments
ZurdoDev 11-Jul-13 8:54am    
Response.Redirect(filepath) will do it. You can also override the Response object setting the ContentType, etc, lots of examples online.
Prasad Khandekar 11-Jul-13 11:11am    
Hello Member,

Please have a look at following links.

1. http://www.codeproject.com/Questions/365313/MVC-Download-files-How-do-I-do-it
2. http://www.dotnetcurry.com/ShowArticle.aspx?ID=807

Regards,

1 solution

Video files are different from other file types. I would say, you should stream the video, instead of downloading. Better you write the code on this lines.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900