Basically, what I would like to do is a button that is created only for entries marked in a separate table for sending. For example, if I edit an entry, I mark this other table and would like the submit button to appear next to this entry through the relay below - is this possible? Can I do a check by calling a method like unsure :(
<asp:Repeater ID="DepartmentsList" runat="server"> <HeaderTemplate> <table id="grouptable" class="table table-bordered table-striped"> <thead> <tr> <th>Send</th> <th>ID</th> <th>Name</th> <th>Last Modified</th> <th>Actions</th> </tr> </thead> <tbody> </HeaderTemplate> <ItemTemplate> <tr> <td> <input type="checkbox" name="sendSelect[]" value="<%# Eval("Dept_ID") %>"</input></td> <td><%# Eval("Dept_ID") %></td> <td><a href="<%# Eval("gURL") %>"><%# Eval("DESC") %></a> </td> <td><%# Eval("CHG_DATE") %></td> <td><a class="btn btn-info" href="<%# Eval("gURL") %>"><i class="icon-pencil icon-white"></i> Edit</a><asp:Button ID="Button1" runat="server" Text="Send" /></td> </tr> </ItemTemplate> <FooterTemplate> </tbody> </table> </FooterTemplate> </asp:Repeater>
source share