16,722
社区成员




<asp:Repeater runat="server" DataSourceID="SqlDataSource2" ID="RptBackupItmes">
<HeaderTemplate>
<table width="100%" style="border: 1px solid #666666; padding: 1px; margin: 1px">
<tr style="background-color: #0A82AA; color: #FFFFFF; font-size: small;">
<th width="5%">
<asp:Label ID="Label48" runat="server" Text="选择"></asp:Label>
</th>
<th width="10%">
<asp:Label ID="Label49" runat="server" Text="产品编号"></asp:Label>
</th>
<th width="15%">
<asp:Label ID="Label12" runat="server" Text="备件名称"></asp:Label>
</th>
<th width="25%">
<asp:Label ID="Label50" runat="server" Text="规格参数"></asp:Label>
</th>
<th width="10%">
<asp:Label ID="Label51" runat="server" Text="数量"></asp:Label>
</th>
<th>
<asp:Label ID="Label52" runat="server" Text="备注"></asp:Label>
</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr style="font-size: small;">
<td align="center" width="5%">
<asp:CheckBox ID="CB" runat="server" />
</td>
<td align="center" width="10%">
<asp:Label ID="LabId" runat="server" Text='<%# Eval("ProductID") %>' />
</td>
<td width="15%">
<asp:Label ID="LabName" runat="server" Text='<%# Eval("ProductName") %>' />
</td>
<td width="25%">
<asp:Label ID="LabPara" runat="server" Text='<%# Eval("ProductPara") %>' />
</td>
<td width="10%">
<asp:Label ID="LabNum" runat="server" Text='<%# Eval("ProductNum") %>' />
</td>
<td>
<asp:Label ID="LabRemark" runat="server" Text='<%# Eval("ProductRemark") %>' />
</td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr style="font-size: small; background-color: #E6E6E6;">
<td align="center" width="5%">
<asp:CheckBox ID="CB" runat="server" />
</td>
<td align="center" width="10%">
<asp:Label ID="Label57" runat="server" Text='<%# Eval("ProductID") %>' />
</td>
<td width="15%">
<asp:Label ID="Label53" runat="server" Text='<%# Eval("ProductName") %>' />
</td>
<td width="25%">
<asp:Label ID="Label58" runat="server" Text='<%# Eval("ProductPara") %>' />
</td>
<td width="10%">
<asp:Label ID="Label59" runat="server" Text='<%# Eval("ProductNum") %>' />
</td>
<td>
<asp:Label ID="Label60" runat="server" Text='<%# Eval("ProductRemark") %>' />
</td>
</tr>
</AlternatingItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
<asp:SqlDataSource ID="SqlDataSource2" runat="server"
ConnectionString="<%$ ConnectionStrings:ld_productbuildConnectionString2 %>"
SelectCommand="SELECT [ProductID], [ProductName], [ProductPara], [ProductNum], [ProductRemark] FROM [Scope] WHERE (([ProjectID] = @ProjectID) AND ([ProductType] = @ProductType))">
<SelectParameters>
<asp:SessionParameter Name="ProjectID" SessionField="projectID" Type="Int32" />
<asp:Parameter DefaultValue="备品备件" Name="ProductType" Type="String" />
</SelectParameters>
</asp:SqlDataSource>