zoukankan
html css js c++ java
种方式遍历repeater中的CheckBox全选
方式1:
foreach
(Control c
in
this
.Repeater1.Controls)
{
HtmlInputCheckBox check
=
(HtmlInputCheckBox)c.FindControl(
"
cbDelete1
"
);
if
( check
!=
null
)
{
check.Checked
=
true
;
}
}
方式2:
for
(
int
i
=
0
;i
<
this
.Repeater1.Items.Count;i
++
)
{
HtmlInputCheckBox check
=
(HtmlInputCheckBox)
this
.Repeater1.Items[i].FindControl(
"
cbDelete1
"
);
if
( check
!=
null
)
{
check.Checked
=
true
;
}
}
方式3:
foreach
( RepeaterItem item
in
this
.Repeater1.Items )
{
HtmlInputCheckBox check
=
(HtmlInputCheckBox)item.FindControl(
"
cbDelete1
"
);
if
( check
!=
null
)
{
check.Checked
=
true
;
}
}
查看全文
相关阅读:
C语言笔记
js学习笔记
Javascript学习笔记
Java基础知识
使用 StackExchange.Redis 封装属于自己的 RedisHelper
StackExchange.Redis 使用资料
.NET平台下Redis使用(三)【ServiceStack.Redis学习】
.NET平台下Redis使用(二)【StackExchange.Redis学习】
Redis 详解 (一) StackExchange.Redis Client
.NET中使用Redis
原文地址:https://www.cnblogs.com/skyshenwei/p/1652758.html
最新文章
预防过拟合
判断目标函数凸或者凹的方法
机器学习中的相似性度量
EM算法
工具网站汇总
Webview
window.location.href重定向 不会触发webview
vue class绑定方式
Vue2.0 :key作用
Async Await 使用
热门文章
javascript this指向
给自己的职业规划
javascript 冒泡排序算法
["1", "2", "3"].map(parseInt) 结果
QTP自动化测试流程
LR测试
Jmeter 测试工具
Qtp自动测试工具
Ruby类
ruby
Copyright © 2011-2022 走看看