how do I get the checked event to fire with a radio button?

E

Eskimo

<asp:repeater id="Repeater1" runat="server">
<HeaderTemplate>
<table class="" cellspacing="4" cellpadding="4" width="100%">
<tr style="background-color:#E0E0E0">
<td></td>
<td>Path</td>
<td>File</td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr style="background-color:#F0F0F0">
<td>
<asp:RadioButton id="RadioButton1" GroupName="Files"
OnCheckedChanged=RadioButton1_CheckedChanged AutoPostBack=True Text='<%#
DataBinder.Eval(Container.DataItem,"Path") %>' runat="server">
</asp:RadioButton>
</td>
<td align="left"><%# DataBinder.Eval(Container.DataItem,"Path")
%></td>
<td align="left"><%# DataBinder.Eval(Container.DataItem,"File")
%></td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr style="background-color:#E0E0E0">
<td>
<asp:RadioButton id="Radiobutton2" GroupName="Files"
OnCheckedChanged=RadioButton2_CheckedChanged AutoPostBack=True Text='<%#
DataBinder.Eval(Container.DataItem,"Path") %>' runat="server">
</asp:RadioButton>
</td>
<td align="left"><%# DataBinder.Eval(Container.DataItem,"Path")
%></td>
<td align="left"><%# DataBinder.Eval(Container.DataItem,"File")
%></td>
</tr>
</AlternatingItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:repeater>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,902
Latest member
Elena68X5

Latest Threads

Top