紧急!灌水的表来了谢谢!

解决方案 »

  1.   

    <%#DataBinder.Eval(Container.DataItem, "ID")%>
      

  2.   

    用个<asp:Label ID='<%#Eval("ID")%>',然后在ItemDataBound里面查找控件:if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
            {
                Label lbl = e.Item.FindControl("lbl_id") as Label;
                if(lbl != null)
                   lbl.Text = "取的ID值";    
            }
      

  3.   

    我的来推荐一个在线课程试听http://www.cdlanhai.com/zxst/
      

  4.   

    我的来推荐一个在线课程试听http://www.cdlanhai.com/zxst/
      

  5.   

    放一个隐藏域 在repeater的显示页面