hi,
i have a radiobuttonlist control and in it i have textboxes. how can i get the entered value of textbox in code. here is my radiobutton code.
<asp:RadioButtonList id="Time" runat="server" Width="568px">
<asp:ListItem Value="1" Selected="True">Anytime</asp:ListItem>
<asp:ListItem Value="2">Time Period - From : <input type="text" id="timeFrom" /> to : <input type="text" id="timeTo" /></asp:ListItem>
<asp:ListItem Value="3">Date Posted - After : <input type="text" id="timeAfter" /></asp:ListItem>
</asp:RadioButtonList></P>
Thanks..
i have a radiobuttonlist control and in it i have textboxes. how can i get the entered value of textbox in code. here is my radiobutton code.
<asp:RadioButtonList id="Time" runat="server" Width="568px">
<asp:ListItem Value="1" Selected="True">Anytime</asp:ListItem>
<asp:ListItem Value="2">Time Period - From : <input type="text" id="timeFrom" /> to : <input type="text" id="timeTo" /></asp:ListItem>
<asp:ListItem Value="3">Date Posted - After : <input type="text" id="timeAfter" /></asp:ListItem>
</asp:RadioButtonList></P>
Thanks..