最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp.net取得复选框值代码
时间:2022-06-25 03:16:25 编辑:袖梨 来源:一聚教程网
我们介绍关于利用asp教程.net 获取checkbox值的几种方法,
html代码
c获取值。
{
int i ;
string str = "";
for (i = 0; i
if (checkboxlist1.items[i].selected ) str+ =checkboxlist1.items[i].value;
label1.text=str;
}
下面讲一下关于
第一种:获得checkbox的值
string save_cbljl = "";
for (int i = 0; i < this.cbljl.items.count; i++)
{
if (this.cbljl.items[i].selected == true)
{
save_cbljl += this.cbljl.items[i].value + ",";
}
}
response.write(save_cbljl);string save_cbljl = "";
for (int i = 0; i < this.cbljl.items.count; i++)
{
if (this.cbljl.items[i].selected == true)
{
save_cbljl += this.cbljl.items[i].value + ",";
}
}
response.write(save_cbljl);
第二种:获得checkbox的值
string str_save_cbljl = "";
foreach (listitem li in cbljl.items)
{
if (li.selected == true)
{
str_save_cbljl += li.value + ",";
}
}
response.write(str_save_cbljl);
相关文章
- 人们熟悉的寄居蟹属于以下哪种分类 神奇海洋11月21日答案 11-21
- 第五人格11.22共研服有什么更新 11月22日共研服更新内容介绍 11-21
- 原神恰斯卡怎么培养 11-21
- 无期迷途四星装束是谁 11-21
- 王者荣耀帝丹高中校服怎么获得 11-21
- 光遇姆明季后续版本怎么玩 11-21