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
mack brave
NA
1
460
check box list problem facing with check boxes
Jun 6 2016 1:38 AM
protected void Button1_Click(object sender, EventArgs e)
{
{
string msg = "";
if (CheckBoxList1.Checked == true)
{
msg = "trading account";
}
if (CheckBoxList1.Checked == true)
{
msg = msg + " insurance";
}
if (CheckBoxList1.Checked == true)
{
msg = msg + " adhar card";
}
if (CheckBoxList1.Checked == true)
{
msg = msg + " 2&4 wheeler insurance";
}
if (msg.Length > 0)
{
MessageBox.Show(msg + " selected ");
}
else
{
MessageBox.Show("No checkbox selected");
}
CheckBoxList1.ThreeState = true;
}
}
}
in the above code i am getting the name checked does not exist in the present content
Reply
Answers (
0
)
store images in sqlserver
Need to reverse a string without StringRev()