ProductInfo.aspx.cs
资源名称:SHOPASP.rar [点击查看]
上传用户:xiecaij
上传日期:2015-02-08
资源大小:2016k
文件大小:2k
源码类别:
百货/超市行业
开发平台:
ASP/ASPX
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- namespace eshop
- {
- /// <summary>
- /// ProductInfo 的摘要说明。
- /// </summary>
- public class ProductInfo : System.Web.UI.Page
- {
- protected System.Web.UI.WebControls.Label lblSearchResults;
- protected System.Web.UI.WebControls.Label lblProductName;
- protected System.Web.UI.WebControls.Label lblPrice;
- protected System.Web.UI.WebControls.Label lblIntro;
- protected System.Web.UI.WebControls.Label lblQty;
- protected System.Web.UI.WebControls.Label lblClickCount;
- private void Page_Load(object sender, System.EventArgs e)
- {
- //页面第一次加载时
- if (!Page.IsPostBack)
- {
- ShowProductInfo();
- }
- }
- void ShowProductInfo()
- {
- //获取Get方式传递的ProductId参数的值
- int productId = int.Parse(Request["ProductId"]);
- //获取某个商品的详细信息
- BLL.ProductDetails pro = BLL.Product.GetProductInfo(productId);
- //商品是否存在
- if (pro == null)
- {
- lblSearchResults.Text = "没有这个商品";
- }
- else
- {
- //显示商品详细信息
- lblProductName.Text = pro.productName;
- lblPrice.Text = pro.productPrice.ToString();
- lblIntro.Text = pro.intro;
- lblClickCount.Text = pro.clickCount.ToString();
- }
- }
- #region Web 窗体设计器生成的代码
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
- //
- InitializeComponent();
- base.OnInit(e);
- }
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.Load += new System.EventHandler(this.Page_Load);
- }
- #endregion
- }
- }