ProductInfo.aspx.cs
上传用户:xiecaij
上传日期:2015-02-08
资源大小:2016k
文件大小:2k
源码类别:

百货/超市行业

开发平台:

ASP/ASPX

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. namespace eshop
  12. {
  13. /// <summary>
  14. /// ProductInfo 的摘要说明。
  15. /// </summary>
  16. public class ProductInfo : System.Web.UI.Page
  17. {
  18. protected System.Web.UI.WebControls.Label lblSearchResults;
  19. protected System.Web.UI.WebControls.Label lblProductName;
  20. protected System.Web.UI.WebControls.Label lblPrice;
  21. protected System.Web.UI.WebControls.Label lblIntro;
  22. protected System.Web.UI.WebControls.Label lblQty;
  23. protected System.Web.UI.WebControls.Label lblClickCount;
  24. private void Page_Load(object sender, System.EventArgs e)
  25. {
  26. //页面第一次加载时
  27. if (!Page.IsPostBack)
  28. {
  29. ShowProductInfo();
  30. }
  31. }
  32. void ShowProductInfo()
  33. {
  34. //获取Get方式传递的ProductId参数的值
  35. int productId = int.Parse(Request["ProductId"]);
  36. //获取某个商品的详细信息
  37. BLL.ProductDetails pro = BLL.Product.GetProductInfo(productId);
  38. //商品是否存在
  39. if (pro == null)
  40. {
  41. lblSearchResults.Text = "没有这个商品";
  42. }
  43. else
  44. {
  45. //显示商品详细信息
  46. lblProductName.Text = pro.productName;
  47. lblPrice.Text = pro.productPrice.ToString();
  48. lblIntro.Text = pro.intro;
  49. lblClickCount.Text = pro.clickCount.ToString();
  50. }
  51. }
  52. #region Web 窗体设计器生成的代码
  53. override protected void OnInit(EventArgs e)
  54. {
  55. //
  56. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  57. //
  58. InitializeComponent();
  59. base.OnInit(e);
  60. }
  61. /// <summary>
  62. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  63. /// 此方法的内容。
  64. /// </summary>
  65. private void InitializeComponent()
  66. {    
  67. this.Load += new System.EventHandler(this.Page_Load);
  68. }
  69. #endregion
  70. }
  71. }