pyttroll / Rotativa

Rotativa, /rota'tiva/. Make Pdf from Asp.Net MVC

Home Page:http://letsfollowtheyellowbrickroad.blogspot.it/search/label/Rotativa

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Extremely easy way to create Pdf files from Asp.net MVC.

Usage:

public ActionResult PrintIndex()
{
    return new ActionAsPdf("Index", new { name = "Giorgio" }) { FileName = "Test.pdf" };
}

public ActionResult Index(string name)
{
    ViewBag.Message = string.Format("Hello {0} to ASP.NET MVC!", name);

    return View();
}

ViewAsPdf now available. It enables you to render a view as pdf in just one move, thanks to scoorf

public ActionResult TestViewWithModel(string id)
{
    var model = new TestViewModel {DocTitle = id, DocContent = "This is a test"};
    return new ViewAsPdf(model);
}

Also available a RouteAsPdf, UrlAsPdf and ViewAsPdf ActionResult.

It generates Pdf also from authorized actions (web forms authentication).

About

Rotativa, /rota'tiva/. Make Pdf from Asp.Net MVC

http://letsfollowtheyellowbrickroad.blogspot.it/search/label/Rotativa