Hello and thanks for taking your time and reading this question.
My Database table: 
My Asp Code:
<asp:Button runat="server" ID="btnReturn" Text="Return to Questions" PostBackUrl="~/Default.aspx" /> <asp:ListView runat="server" ID="lstQuestion"> <ItemTemplate> <h1><%# Eval("Title") %></h1> <asp:RadioButtonList runat="server" id="rblAnswers"> <asp:ListItem Text="yes"></asp:ListItem> <asp:ListItem Text="no"></asp:ListItem> <asp:ListItem Text="Maybe"></asp:ListItem> </asp:RadioButtonList> <asp:TextBox runat="server" ID="txttest"></asp:TextBox> </ItemTemplate> </asp:ListView> <br /> <asp:Button runat="server" ID="btntest" Text="Get Result" OnClick="btntest_Click" /> The output in the browser

What I want to achive is: If the User press the btntest and the page looks like the one above. A simple response.write() (to start with) shall write the : no - Coment1 - yes - Coment 2.
Basic it write what has been select and coments if something is typed.
I hope you understand and sorry for my english.