TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
kamlesh rai
1.7k
58
497
Checklist value
Oct 31 2018 7:28 AM
i want to add asp checklist value in array
for (int i = 0; i < CheckBoxList1.Items.Count; i++)
{
if (CheckBoxList1.Items[i].Selected)
cb += CheckBoxList1.Items[i].Text.ToString() + ",";
}
for (int i = 0; i < CheckBoxList2.Items.Count; i++)
{
if (CheckBoxList2.Items[i].Selected)
cb2 += CheckBoxList2.Items[i].Text.ToString() + ",";
i have differnt string value in check list i want store them
Reply
Answers (
1
)
Check reference of Primary key
How to call the Microsoft graph API in c# code