PopularProduct.ascx.cs
资源名称:SHOPASP.rar [点击查看]
上传用户:xiecaij
上传日期:2015-02-08
资源大小:2016k
文件大小:1k
源码类别:
百货/超市行业
开发平台:
ASP/ASPX
- namespace eshop.UserControl
- {
- using System;
- using System.Data;
- using System.Drawing;
- using System.Web;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- /// <summary>
- /// PopularProcuct 的摘要说明。
- /// </summary>
- public class PopularProduct : System.Web.UI.UserControl
- {
- protected System.Web.UI.WebControls.Repeater PopularList;
- private void Page_Load(object sender, System.EventArgs e)
- {
- PopularList.DataSource = BLL.Product.GetPopularProduct();
- PopularList.DataBind();
- }
- #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
- }
- }