0
詳細メソッドはローカライズされたビューを返しますが、GeneratePdfメソッドは返しません。Rotavita.ActionAsPdfのローカリゼーションが機能しない
public ActionResult GeneratePdf(long id, long userId)
{
return new ActionAsPdf("Details", new { id = id, userId = userId }) { FileName="pdf.pdf", PageOrientation = Rotativa.Options.Orientation.Landscape};
}
public ActionResult Details(long id, long userId)
{
return View();
}