Forum Moderators: open
I have a checkboxes on my page (.aspx) like
checkbox1 - item1
checkbox2 - item2
checkbox3 - item3
etc
what i want is that when a user selects certain checkboxes
they should be inserted into a table called
customer which has fields (customer id and actions)
the data should be inserted as
customerid actions
1 item1,item2,item3
2 item1,item3
3 etc..
i.e all the values should be inserted into database into one field separated by commas.
Thanks
[edited by: coopster at 2:26 pm (utc) on May 8, 2009]
[edit reason] no signatures please TOS [webmasterworld.com] [/edit]
StringBuilder sb = new StringBuilder();
if (item1.checked) {sb.Append("item1,")}
if (item2.checked) {sb.Append("item2,")}
if (item3.checked) {sb.Append("item3,")}
string sql = "INSERT INTO Customer (actions) VALUES (" + sb.ToString() + ")"
StringBuilder sb = new StringBuilder();
foreach (Control myControl in form1.Controls)
{
if (myControl is CheckBox)
{
CheckBox tempCheckBox;
tempCheckBox = (CheckBox)myControl;
if (tempCheckBox.Checked)
{
sb.Append(tempCheckBox.ID + ",")
}
}
}