protected bool CheckForItemsInCart()
    {
        ShoppingCartItemController sysmgr = new ShoppingCartItemController();
        bool check = sysmgr.CheckForShoppingCartItems(User.Identity.Name);

        return(check);
    }