【发布时间】:2012-10-14 06:14:10
【问题描述】:
我想通过DataList中的按钮点击事件来改变按钮的状态。请在这方面帮助我。
<asp:DataList ID="DataList1" CaptionAlign="Right" runat="server" Width="100%" Visible="true">
<ItemTemplate>
<table style="border-bottom:0px; border-left:0px; border-right:0px;" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="120px"><asp:Label ID="lbl_ccode" runat="server" Text='<%#Bind("Fld_Couponcode")%>' ></asp:Label></td>
<td width="140px"><asp:Label ID="lbl_cval" runat="server" Text='<%#Bind("Fld_CouponValue")%>' ></asp:Label></td>
<td width="140px"><asp:Label ID="bl_status" runat="server" Text='<%#Bind("fld_status")%>' ></asp:Label></td>
<td width="140px"><asp:Button ID="btnstatus" runat="server" Text='<%#Bind("fld_status")%>' /></td>
</tr> </table>
</ItemTemplate>
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" HorizontalAlign="Left" ForeColor="White" />
</asp:DataList>
【问题讨论】:
标签: c# javascript asp.net vb.net