日期:2014-05-17 浏览次数:20523 次
<table width="99%" border="0" cellspacing="0" cellpadding="0">
<asp:Repeater ID="rep_Objict" runat="server" OnItemDataBound="rep_Objict_ItemDataBound">
<ItemTemplate>
<tr style="margin: 20px;">
<td style="padding-left: 30px; margin-top: 20px;">
<input type="checkbox" value="<%#Eval("Id")%>" id="parent$<%#Eval("Id") %>" name="ObjectID$<%#Eval("Id") %>" onclick='CheckAll(this)' /><span style="font-size: 16px;"> <%#Eval("Name") %></span>
<ul style="margin-left: 20px;">
<asp:Repeater ID="rep_Property" runat="server">
<ItemTemplate>
<li class="childLi">
<input type="checkbox" value="<%# DataBinder.Eval(((RepeaterItem)Container.Parent.Parent).DataItem, "Id")%>" <%#GetCheckedStateString(Eval("Id").ToString())%> id="child<%#Eval("Id") %>" name="ObjectProID$<%#Eval("Id") %>" /><span class="childDataLable"><%#Eval("Name") %></span></li>