Advertisement
Guest User

Untitled

a guest
Oct 8th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 1.83 KB | None | 0 0
  1. <asp:Repeater runat="server" ID="EditBudgetOuterRepeater">
  2.                         <HeaderTemplate>
  3.                             <Table>
  4.                             <tr>
  5.                                 <th>Project Budget</th>
  6.                                 <th>Original Budget</th>
  7.                                 <th>Current Budget</th>
  8.                             </tr>
  9.                         </HeaderTemplate>
  10.                         <ItemTemplate>
  11.                             <tr>
  12.                                 <td class="budgetReportCategory" colspan="3"><%# Eval("Code") %> <%# Eval("Description") %></td>
  13.                             </tr>
  14.                             <tr>
  15.                                 <asp:Repeater runat="server" DataSource='<%# Eval("Entries") %>'>
  16.                                     <ItemTemplate>
  17.                                         <tr>
  18.                                             <td class="budgetReportLineItem"><%# Eval("Description") %> FY <%# Eval("FiscalYear") %></td>
  19.                                             <td><%# Eval("Amount") %></td>
  20.                                             <td><asp:TextBox runat="server" Text='<%# Eval("Amount") %>' /></td>
  21.                                         </tr>
  22.                                     </ItemTemplate>
  23.                                 </asp:Repeater>
  24.                             </tr>
  25.                             <tr>
  26.                                 <td class="budgetReportCategoryTotal">Total for <%# Eval("Code") %> <%# Eval("Description") %></td>
  27.                                 <td><%# Eval("Amount") %></td>
  28.                             </tr>
  29.                         </ItemTemplate>
  30.                         <FooterTemplate>
  31.                             </Table>
  32.                         </FooterTemplate>
  33.                     </asp:Repeater>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement