⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checkout.aspx.cs

📁 ASP.net网站开发四“酷”全书:新闻、论坛、电子商城、博客_源码
💻 CS
字号:
using BookShop.BLL;
using BookShop.Web.Controls;
using System;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;

namespace BookShop.Web {
	public class Checkout : Page {
		protected SimplePager cart;
		protected HtmlAnchor link;
		protected NavBar header;
		protected Cart myCart;

		override protected void OnLoad(EventArgs e) {

			// Create an instance of the cart controller
			ProcessFlow.CartController cartController = new ProcessFlow.CartController();
			// Fetch the cart state from the controller
			myCart = cartController.GetCart(false);
			
			// If there is something in the cart then show the continue button
			link.Visible = myCart.Count > 0;
		}

		protected void CartPageChanged(object sender, DataGridPageChangedEventArgs e) {

			// (re)bind the data when the page changes
			cart.CurrentPageIndex = e.NewPageIndex;
			cart.DataSource = myCart.GetCartItems();
			cart.DataBind();

		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -