I am working on several Yes and No RadioButtonList survey type questionnaires.
Example: Do you own a house? Yes or No (Radio button). If Yes is clicked then show another RadioButton list (Do you pay mortgage? Yes or No (Radio button) etc..
I have seen several examples code behind similar to what I am trying to do here, but I have not yet found client side example that satisfy my need. Does anyone has an example that can shade some light?
<tr>
<td class="controltextHeadingBorder">
Do you own a house?
</td>
<td class="borderedCell">
<asp:RadioButtonList ID="rblOwnHouse" runat="server"
RepeatDirection="Horizontal" CssClass="radioOptions">
<asp:ListItem Selected="True" Value=&quo ...
Go to the complete details ...