当前位置:  编程技术>.net/c#/asp.net

Repeater控件绑定的三种方式

    来源: 互联网  发布时间:2014-10-20

    本文导语:  方式一 在aspx页面,写好需要循环输出的内容,一般包含用户自定义控件、服务器控件、Html格式的片段、和这种方式来动态显示获取到得数据列表: 代码如下:                                               ...

方式一
在aspx页面,写好需要循环输出的内容,一般包含用户自定义控件、服务器控件、Html格式的片段、和这种方式来动态显示获取到得数据列表:

代码如下:


       
       

  •            
                   
                   
               

           

  •    


    在cs文件,是用GetProductImageList方法来获取List类型的数据列表,并绑定在Repeater控件上面:
    上面的不包含用户自定义控件、服务器控件,所以不需要ItemDataBound事件来对单个的数据项进行个性化的赋值
    代码如下:

    protected override void BindDataSource()
    {
        this.rpImage.DataSource = GetProductImageList();
        this.rpImage.DataBind();
    }

    方式二
    在aspx页面,这次包含了用户自定义控件,所以需要用到ItemDataBound事件来对列表中的每一个用户自定义控件进行个性化的赋值,用户自定义控件可以有公用的方法或者属性,

    让我们在ItemDataBound事件中赋值:

    代码如下:


       
            

  •             
                
                    
                

                
            

  •    


    在cs文件,用户自定义控件可以有公用的方法或者属性,让我们在ItemDataBound事件中赋值:
    代码如下:

    protected override void BindDataSource()
    {
        this.gvItemList.DataSource = productList;
        this.gvItemList.DataBind();
    }
    protected override void OnInit(EventArgs e)
    {
        this.gvItemList.ItemDataBound += new RepeaterItemEventHandler(this.OnItemListDataBound);
        base.OnInit(e);
    }
    private void OnItemListDataBound(object sender, RepeaterItemEventArgs e)
    {

        ProductCellInfo productItem = (ProductCellInfo)e.Item.DataItem;

        if (productItem != null)
        {
           ProductFullNameCell productName;
           ImageCell image;
           ProductControlCell productControlCell;

           foreach (Control sub in e.Item.Controls)
           {

               productName = sub as ProductFullNameCell;
               if (productName != null)
               {
                   productName.InitProductFullName(productItem.Title, productItem.PromotionTitle, DispalyContentLength);
                   continue;
               }

               image = sub as ImageCell;
               if (image != null)
               {
                   image.InitImageCell2(productItem.ID, productItem.Code, productItem.Name, productItem.ImageUrl, productItem.ImageVersion);

                   continue;
               }

               productControlCell = sub as ProductControlCell;
               if (productControlCell != null)
               {
                   productControlCell.InitProductControlCell(productItem);
                   continue;
               }
           }
       }
    }


    方式三:
    在aspx页面,可以显示设置OnItemDataBound属性,就不用像方式二那样,在cs文件中的OnInit方法中动态绑定,代码如下:
    代码如下:

    在cs文件:
    代码如下:

    protected override void BindDataSource()
    {
        base.BindDataSource();

        this.rptListCell.DataSource = this.List;
        this.rptListCell.DataBind();
    }

    protected void RptAllOnItemDataBound(object sender, RepeaterItemEventArgs e)
    {
        CategoryInfo category = (CategoryInfo)e.Item.DataItem;
        PlaceHolder pHot = e.Item.FindControl("pHot") as PlaceHolder;
        PlaceHolder pNew = e.Item.FindControl("pNew") as PlaceHolder;
        Literal lit = e.Item.FindControl("literalValidGiftOption") as Literal;
        switch (category.PromotionStatus)
        {
            case "H":
               pHot.Visible = true;
               break;
            case "N":
               pNew.Visible = true;
               break;
            default:
               break;
        }
        lit.Text = category.Name;
    }


        
     
     
     
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 嵌套repeater示例分享
  • Repeater中嵌套Repeater的示例介绍
  • Repeater中添加按钮实现点击按钮获取某一行数据的方法
  • asp.net Repeater取得CheckBox选中的某行某个值
  • Repeater怎么实现多行间隔显示分隔符


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3