tags:

views:

27

answers:

1

How can I make downloadable file links in asp.net mvc for downloading the files?

Also how can I show the file as thumbnail in my page in asp.net mvc?

A: 

You can use a FileResult. See http://msdn.microsoft.com/en-us/library/system.web.mvc.fileresult.aspx

Derek Greer