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

百货/超市行业

开发平台:

ASP/ASPX

  1. namespace eshop.UserControl
  2. {
  3. using System;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.UI.WebControls;
  8. using System.Web.UI.HtmlControls;
  9. /// <summary>
  10. /// PopularProcuct 的摘要说明。
  11. /// </summary>
  12. public class PopularProduct : System.Web.UI.UserControl
  13. {
  14. protected System.Web.UI.WebControls.Repeater PopularList;
  15. private void Page_Load(object sender, System.EventArgs e)
  16. {
  17. PopularList.DataSource = BLL.Product.GetPopularProduct();
  18. PopularList.DataBind();
  19. }
  20. #region Web 窗体设计器生成的代码
  21. override protected void OnInit(EventArgs e)
  22. {
  23. //
  24. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  25. //
  26. InitializeComponent();
  27. base.OnInit(e);
  28. }
  29. /// <summary>
  30. /// 设计器支持所需的方法 - 不要使用代码编辑器
  31. /// 修改此方法的内容。
  32. /// </summary>
  33. private void InitializeComponent()
  34. {
  35. this.Load += new System.EventHandler(this.Page_Load);
  36. }
  37. #endregion
  38. }
  39. }