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

📄 item.ascx.cs

📁 ibatis的资料的资料资料ibatis的
💻 CS
字号:
namespace NPetshop.Web.UserControls.Catalog
{
	using System;
	using System.Data;
	using System.Drawing;
	using System.Web;
	using System.Web.UI.WebControls;
	using System.Web.UI.HtmlControls;

	using NPetshop.Domain.Catalog;
	using NPetshop.Presentation.Core;
	using NPetshop.Presentation.UserActions;
	/// <summary>
	/// Description r閟um閑 de Item.
	/// </summary>
	public class Item : NPetshop.Presentation.UserControl
	{
		protected System.Web.UI.WebControls.Label LabelDescription;
		protected System.Web.UI.WebControls.Label LabelName;
		protected System.Web.UI.WebControls.Label LabelPrice;
		protected System.Web.UI.WebControls.LinkButton LinkButtonAddToCart;
		protected System.Web.UI.WebControls.Label LabelProduct;
		protected System.Web.UI.WebControls.Image ImagePhoto;
		protected System.Web.UI.WebControls.Label LabelQty;

		private void Page_Load(object sender, System.EventArgs e)
		{
			// Placer ici le code utilisateur pour initialiser la page
		}

		public override void DataBind()
		{				
			NPetshop.Domain.Catalog.Item item = this.WebLocalSingleton.CurrentAction.Data[DataViews.ITEM] as NPetshop.Domain.Catalog.Item; 
			if (item != null)
			{
				LabelProduct.Text = item.Product.Name;
				LabelDescription.Text = item.Attribute1;
				LabelPrice.Text = item.ListPrice.ToString();
				LabelQty.Text = item.Quantity.ToString();
				LabelName.Text = item.Id;
				ImagePhoto.ImageUrl = "~/@images/pets/"+item.Photo;
				LinkButtonAddToCart.CommandArgument = item.Id;
			}
		}

		private void LinkButtonAddToCart_Click(object sender, CommandEventArgs e)
		{
			ShoppinAction action = new ShoppinAction(Context);
			action.AddItemToCart(e.CommandArgument.ToString());
			this.CurrentController.NextView = action.NextViewToDisplay;
		}

		#region Code g閚閞

⌨️ 快捷键说明

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