Insert Value From CheckBox in Database (MySQL) in asp.net using C#
Insert multiple Value From CheckBox in Database (MySQL) in asp.net using C#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dhanashri PatilPosted Sep 10, 2012, 8:57 AM
for eg... 01:30 PM
help plz
Dhanashri PatilPosted Sep 10, 2012, 7:39 AM
Satyapriya NayakPosted Sep 10, 2012, 7:30 AM
Try this...
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Insert_multiple_Value_CheckBoxList._Default" %>
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
namespace Insert_multiple_Value_CheckBoxList
{
public partial class _Default : System.Web.UI.Page
{
string connStr = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
SqlCommand com;
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(connStr);
string s1 = string.Empty;
foreach (ListItem item in this.CheckBoxList1.Items)
{
if (item.Selected)
{
s1 = item.ToString();
com = new SqlCommand("Insert into test values('" + s1 + "')", con);
con.Open();
int iCount = com.ExecuteNonQuery();
con.Close();
}
}
}
}
}
Thanks
If this post helps you mark it as answer
Dhanashri PatilPosted Sep 10, 2012, 7:14 AM
it stores a,b,c ....i don't want this
i want it should take as
eg.
column- Name
a
b
c
can you help me for it.....
Satyapriya NayakPosted Sep 9, 2012, 2:38 PM
Try this...
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Insert_multiple_Value_CheckBoxList._Default" %>
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
namespace Insert_multiple_Value_CheckBoxList
{
public partial class _Default : System.Web.UI.Page
{
string connStr = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
SqlCommand com;
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(connStr);
string s1 = string.Empty;
foreach (ListItem item in this.CheckBoxList1.Items)
{
if (item.Selected)
{
s1 += item + ",";
}
}
com = new SqlCommand("Insert into test values('" + s1 + "')", con);
con.Open();
int iCount = com.ExecuteNonQuery();
con.Close();
}
}
}
Thanks
If this post helps you mark it as answer