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
venky n
NA
110
38.4k
javascript method
May 13 2015 1:16 AM
This coding how to change javascript language .Any one plz help me.
protected void chkboxproject_CheckedChanged(object sender, EventArgs e)
{
if (chkboxproject.Checked == true)
{
Label1.Text = "All Projects";
}
else
{
int numSelected = 0;
foreach (ListItem li in chkprojects.Items)
{
if (li.Selected)
{
numSelected = numSelected + 1;
}
Label1.Text = Convert.ToString(numSelected);
}
}
}
Reply
Answers (
5
)
bind data with html table
Entity Framework