R
robk
Hi,
I'm using Repeater control which is bounded to DataSet.
Problem is when page is loaded radiobuttons aren't showing and
its direction is stil horizontal.
Any sugestions apprettiated.
Thx
Bob
This is HTML code:
....
<asp:Repeater id="rQ" runat="server" DataSource="<%# dsQueAns %>">
<ItemTemplate>
<table>
<tr>
<td><b><%# DataBinder.Eval(Container.DataItem, "Question") %></b></td>
</tr>
</table>
<asp:RadioButtonList ID="rblOdg" DataSource="<%# dsQueAns %>"
RepeatLayout="Table" EnableViewState="True" RepeatDirection="Vertical"
TextAlign="Left" AutoPostBack="False">
<asp:ListItem Selected="False">
<%# DataBinder.Eval(Container.DataItem, "Ans_1") %>
</asp:ListItem>
<asp:ListItem Selected="False">
<%# DataBinder.Eval(Container.DataItem, "Ans_2") %>
</asp:ListItem>
<asp:ListItem Selected="False">
<%# DataBinder.Eval(Container.DataItem, "Ans_3") %>
</asp:ListItem>
<asp:ListItem Selected="False">
<%# DataBinder.Eval(Container.DataItem, "Ans_4") %>
</asp:ListItem>
</asp:RadioButtonList>
</ItemTemplate>
</asp:Repeater>
I'm using Repeater control which is bounded to DataSet.
Problem is when page is loaded radiobuttons aren't showing and
its direction is stil horizontal.
Any sugestions apprettiated.
Thx
Bob
This is HTML code:
....
<asp:Repeater id="rQ" runat="server" DataSource="<%# dsQueAns %>">
<ItemTemplate>
<table>
<tr>
<td><b><%# DataBinder.Eval(Container.DataItem, "Question") %></b></td>
</tr>
</table>
<asp:RadioButtonList ID="rblOdg" DataSource="<%# dsQueAns %>"
RepeatLayout="Table" EnableViewState="True" RepeatDirection="Vertical"
TextAlign="Left" AutoPostBack="False">
<asp:ListItem Selected="False">
<%# DataBinder.Eval(Container.DataItem, "Ans_1") %>
</asp:ListItem>
<asp:ListItem Selected="False">
<%# DataBinder.Eval(Container.DataItem, "Ans_2") %>
</asp:ListItem>
<asp:ListItem Selected="False">
<%# DataBinder.Eval(Container.DataItem, "Ans_3") %>
</asp:ListItem>
<asp:ListItem Selected="False">
<%# DataBinder.Eval(Container.DataItem, "Ans_4") %>
</asp:ListItem>
</asp:RadioButtonList>
</ItemTemplate>
</asp:Repeater>