Skip to content

Instantly share code, notes, and snippets.

@squidge
Created November 18, 2011 13:18
Show Gist options
  • Save squidge/1376438 to your computer and use it in GitHub Desktop.
Save squidge/1376438 to your computer and use it in GitHub Desktop.
Download file in FubuMVC
namespace DownloadStream.Controllers
{
using System.Web;
using FubuMVC.Core.Behaviors;
public class JpegController
{
public DownloadFileModel Stream()
{
return new DownloadFileModel
{
ContentType = "application/pdf",
LocalFileName = HttpContext.Current.Server.MapPath("~/Assets/file.pdf")
};
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment