Example #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         rptCategory.DataSource = cateBLL.SelectParent();
         rptCategory.DataBind();
     }
 }
Example #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                string cid = Request.QueryString["cid"].ToString();
                rptCategory.DataSource = cateBLL.SelectParent();
                rptCategory.DataBind();

                rptFeatureProducts.DataSource = prodBLL.SelectCategoryProduct(cid);
                rptFeatureProducts.DataBind();
            }
        }