zoukankan
html css js c++ java
Reperater ItemDataBound事件的用法记录
protected
void
Repeater1_ItemDataBound(
object
sender, RepeaterItemEventArgs e)
{
if
(e.Item.ItemType
==
ListItemType.Item
||
e.Item.ItemType
==
ListItemType.AlternatingItem)
{
//
ControlGetTag(e.Item.FindControl("WebUserControl_Tag1"), 20);
string
unic
=
DataBinder.Eval(e.Item.DataItem,
"
Unic
"
).ToString();
Label lbTag
=
(Label)e.Item.FindControl(
"
lbTag
"
);
lbTag.Text
=
ControlSetTagLabelValues(GetCurrentTag(
20
, unic),
""
,
""
);
bindImage(unic, PICID, SIZE, (Image)e.Item.FindControl(
"
Img_Name
"
), (HyperLink)e.Item.FindControl(
"
Hlink
"
));
}
}
如果忘了可以回来看看 嘿嘿
查看全文
相关阅读:
Python的容器类型的遍历汇总
python学习0313作业
Python的字符编码
hadoop-sqoop学习笔记
eclipse Git & maven 安装
使用mongoperf评估磁盘随机IO性能
限制mongodb内存占用过高方法
rabbitmq集群安装
Perfmon
mongodb所在目录空间不足解决方法
原文地址:https://www.cnblogs.com/daxia/p/791050.html
最新文章
OpenCV3计算机视觉Python语言实现笔记(三)
OpenCV3计算机视觉Python语言实现笔记(二)
OpenCV3计算机视觉Python语言实现笔记(一)
图像处理基础笔记(一)
Windows解压安装mysql 5.7.24,并部署多个mysql服务
springboot获取applicationcontext
springboot使用lettuce连接池
ArrayList中ConcurrentModificationException
冒泡排序及简单优化
springboot配置文件中使用当前配置的变量
热门文章
nginx+tomcat9+redisson+redis+jdk1.8简单实现session共享
移走mysql data目录,及常见mysql启动问题
springboot打包去除资源文件,启动时指定配置文件位置,使用log4j2替换默认logback
springboot 创建非web项目及数据源简单使用
Python的函数对象
Python的命名空间namepaces
Python的函数的使用
Python学习0317作业
Python的函数
Python学习0316作业
Copyright © 2011-2022 走看看