Why does Rotativa always generate my login page? Why is it slow?
问题 I was using this Rotativa 1.6.4 code example to generate a PDF from a page in my .NET MVC 5 app. public ActionResult PrintIndex() { var a = new ActionAsPdf("Index", new { name = "Giorgio" }) { FileName = "Test.pdf" }; a.Cookies = Request.Cookies.AllKeys.ToDictionary(k => k, k => Request.Cookies[k].Value); a.FormsAuthenticationCookieName = System.Web.Security.FormsAuthentication.FormsCookieName; a.CustomSwitches = "--load-error-handling ignore"; return a; } public ActionResult Index(string