Posted on: 7/30/2014 9:26:27 PM | Views : 372

I have a simple form created using the following controls. Textbox, CheckBox and RadioButton. After clicking my submit button, i want to send the value enterd in the form to a database. The value from the Textbox shown in the database but I could complete the checkbox and radiobutton.
Here is the form code
 Name             <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>             <br />             <br />             Ailment:             <asp:CheckBox ID="CheckBox1" runat="server" />             <br />    ...

Go to the complete details ...