2PTTechnology
The platform that enables you to build rich, interactive communities
Welcome to 2PTTechnology
Sign in
|
Join
|
Help
in
.Net (forum)
.NET 1.1/2.0/3.5 (group)
(Entire Site)
Search
Home
Forums
2PTTechnology
»
.NET 1.1/2.0/3.5
»
.Net
»
check if a CheckBoxList has anything selected
check if a CheckBoxList has anything selected
Last post 03-28-2007, 11:18 AM by
pskobel
. 0 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
03-28-2007, 11:18 AM
39
pskobel
Joined on 01-24-2007
Posts 26
check if a CheckBoxList has anything selected
Example:
if (
chkProductCategories.SelectedIndex == -1
)
{
lblError.Text = "At least one Product Category is required!";
return;
}
Report abuse