Breaking

Search Here

18 December 2014

We can store data in multiple data in single column

 for (int i = 0; i < chkIndustry.Items.Count - 1; i++)
            {
                if (chkIndustry.Items[i].Selected == true)
                {
                    strIndustry += chkIndustry.Items[i].Value.ToString() + ",";
                }
            }
            strIndustry = strIndustry.TrimEnd(',');
            ObjJobseeker.IndustryId = strIndustry;

No comments:

Post a Comment

Hello all, if you have any doubt feel free comment

Comments