会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Insus.NET
放下一切乘云去,坐起云端观落日。
博客园
首页
新随笔
联系
管理
订阅
二种方法均可行
cblStatus是一个CheckBoxList有三个选框,值为0,1,2:
现在是需要对三种值作不同的判断,有二种方法是可以实现。
方法一:
Code
string
statusSelectValue
=
GetCheckBoxListSelectedValue(
this
.cblStatus);
if
(statusSelectValue.Length
>
0
)
{
string
[] str
=
statusSelectValue.Split(
'
,
'
);
foreach
(
string
s
in
str)
{
if
(s.ToString()
==
"
0
"
)
{
//
}
if
(s.ToString()
==
"
1
"
)
{
//
}
if
(s.ToString()
==
"
2
"
)
{
//
}
}
}
方法二:
Code
string
statusSelectValue
=
GetCheckBoxListSelectedValue(
this
.cblStatus);
if
(statusSelectValue.Length
>
0
)
{
if
(statusSelectValue.Contains(
"
0
"
))
{
//
}
if
(statusSelectValue.Contains(
"
1
"
))
{
//
}
if
(statusSelectValue.Contains(
"
2
"
))
{
//
}
}
posted @
2009-07-04 17:26
Insus.NET
阅读(
431
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告