码迷,mamicode.com
首页 > 其他好文 > 详细

repeater嵌套repeater

时间:2017-05-31 00:20:36      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:end   git   send   win   opp   alt   ping   ati   windows   

  1. protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)
    {
    if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
    {
    Repeater rpWindows = e.Item.FindControl("Repeater2") as Repeater;
    HiddenField hfMenuID = e.Item.FindControl("hfMenuID") as HiddenField;

    string strMenuID = hfMenuID.Value.ToString().Trim();

    rpWindows.DataSource = new shoppingData().SelectAllInproduct(strMenuID);
    rpWindows.DataBind();

    }}

repeater嵌套repeater

标签:end   git   send   win   opp   alt   ping   ati   windows   

原文地址:http://www.cnblogs.com/zhangwei99com/p/6921692.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!