zoukankan
html css js c++ java
CheckBoxList取值及勾选上
string
strrighgs
=
""
;
for
(
int
i
=
0
; i
<
this
.cblrighgs.Items.Count; i
++
)
{
if
(
this
.cblrighgs.Items[i].Selected
==
true
)
{
strrighgs
+=
this
.cblrighgs.Items[i].Value
+
"
|
"
;
}
}
string
str
=
""
;
foreach
(ListItem li
in
cblrighgs.Items)
{
if
(li.Selected
==
true
)
{
str
+=
li.Value
+
"
;
"
;
}
}
Response.Write(str);
Response.End();
勾选上:
string
[] strtemp
=
strapp.Split(
'|
'
);
foreach
(
string
str
in
strtemp)
{
for
(
int
i
=
0
; i
<
cblrighgs.Items.Count; i
++
)
{
if
(
this
.cblrighgs.Items[i].Value
==
str)
{
this
.cblrighgs.Items[i].Selected
=
true
;
}
}
}
查看全文
相关阅读:
scrapy爬虫框架入门教程
wing IDE破解方法
python网络画图——networkX
Flask Web Development —— Web表单(上)
pandas聚合和分组运算——GroupBy技术(1)
Python自然语言工具包(NLTK)入门
python & pandas链接mysql数据库
Win10家庭版怎么开启Administrator超级管理员帐户
Echars保存图片
Windowserver2008R2安装IIS环境
原文地址:https://www.cnblogs.com/cnaspnet/p/751293.html
最新文章
IntelliJ Idea 常用快捷键
centos7安装配置jdk
tomcat部署项目
Java 必须掌握的 20+ 种 Spring 常用注解
JS 全选、全不选、反选
linux 网络设置
Maven详解
JVM各垃圾收集器对比
HashMap 学习笔记
ArrayList 线程安全
热门文章
java运算符 与(&)、非(~)、或(|)、异或(^)
HashMap负载因子
HashMap 构造函数
LinkedList 学习笔记
ArrayList 遍历
ArrayList 学习笔记
ArrayList 进阶方法之ListIterator
博客地址已转
SymPy库常用函数
MarkDown写作技巧
Copyright © 2011-2022 走看看