<asp:GridView ID="QuestionGridview" runat="server" > <Columns> <asp:TemplateField> <ItemTemplate> <table> <tr> <td> Question <asp:Label ID="Label1" runat="server" Text='<%# Eval("Id") %>'></asp:Label> : <asp:Label ID="Label2" runat="server" Text='<%# Eval("Question") %>'></asp:Label> </td> </tr> <tr> <td> <br /> <asp:RadioButton GroupName="ans" ID="RadioButton1" runat="server" Text='<%# Eval("Option1") %>' /> <br /> <asp:RadioButton GroupName="ans" ID="RadioButton2" runat="server" Text='<%# Eval("Option2") %>' /> <br /> <asp:RadioButton GroupName="ans" ID="RadioButton3" runat="server" Text='<%# Eval("Option3") %>' /> <br /> <asp:RadioButton GroupName="" ID="RadioButton4" runat="server" Text='<%# Eval("Option4") %>' /> </td> </tr> </table> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView>
DataList
Repeater
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)