views:

19

answers:

1

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 ASP .NET - can anyone help me by providing some ideas, coding to implement this.

A: 

Rick Strahl has a short sample that does exactly this...In really comes down to setting the correct Response headers and streaming the file to the user...

http://www.west-wind.com/weblog/posts/76293.aspx

davidsleeps