Функция печати с использованием Rotativa

Я использовал Rotativa, чтобы напечатать одну из моих страниц из html в pdf, и когда я нажму кнопку для печати, откроется предварительный просмотр, но в предварительном просмотре нет той страницы, которую я просто печатаю, она содержит и показывает мне страницу входа в предварительном просмотре. вместо этого, как вы можете видеть, я не знаю точно, что случилось. Может кто-нибудь указать мне правильное направление?

Страница, которую я пытался напечатать, выглядит так: введите описание изображения здесьНо когда я нажимаю кнопку для печати, в предварительном просмотре дайте мне войти в страницу:

введите описание изображения здесь

AccountController:

protected override void OnActionExecuting(ActionExecutingContext filterContext)
            {
                if (Session["CustomerID"] == null &! Request.RawUrl.ToLower().Contains("login"))
                {
                     Response.Redirect("/Account/Login");
                }
                base.OnActionExecuting(filterContext);
            }

<br>
 //Login


public ActionResult Login()
    {

        return View();

    }
    [HttpPost]
    public ActionResult Login(Customers cust)
    {

        using (DataContext db = new DataContext())
        {
            var user = db.Customers.Where(u => u.CustomerID == cust.CustomerID).FirstOrDefault();

            if (user != null)
            {
                Session["CustomerID"] = user.CustomerID.ToString();
                FormsAuthentication.SetAuthCookie(cust.CustomerID, false);
                Session.Timeout = 30;

                return RedirectToAction("LoggedIn");
            }

            else
            {
                ModelState.AddModelError("", "CustomerID is not Valid");
            }
        }
        return View();

    }

    public ActionResult LoggedIn()
    {

        if (Session["CustomerID"] != null)
        {
            string customerId = Session["CustomerID"].ToString();
            List<Orders> customerOrders;
            using (DataContext data = new DataContext())
            {
                customerOrders = data.Orders.Where(x => x.CustomerID == customerId).ToList();
            }

            return View(customerOrders);
        }
        else
        {
            return RedirectToAction("Login");
        }

    }
    public ActionResult Logout()
    {
        FormsAuthentication.SignOut();
        Session.Remove("Login");
        return RedirectToAction("Login", "Account");
    }

    public ActionResult PrintOrders(int id)
            {
                var report = new ActionAsPdf("ShowOrdersDetails", new { id = id });
                return report;
            }

0 ответов

Другие вопросы по тегам