博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET Repeater控件
阅读量:6598 次
发布时间:2019-06-24

本文共 630 字,大约阅读时间需要 2 分钟。

protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)    {        if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)        {            DataRowView row = e.Item.DataItem as DataRowView;            if (row["NickName"].ToString().Length > 4)            {                Label label = e.Item.FindControl("LabelName") as Label;                label.ForeColor = Color.Red;            }        }    }

服务端控件数据绑定时属性必须用单引号''

<asp:Label ID="LabelName" runat="server" Text='<%#Eval("NickName") %>' />

还可以参考

转载于:https://www.cnblogs.com/FlyCat/archive/2012/03/19/2579996.html

你可能感兴趣的文章
Your First iOS app(11)--Tutorial: Add Data(一)
查看>>
五险一金,你清楚吗?
查看>>
AT&T汇编出现如下错误时解决方案
查看>>
mybatis 高级映射
查看>>
find 命令
查看>>
idea 常用快捷键
查看>>
Ip核_fifo
查看>>
基础 JavaScript 实例
查看>>
jenkins远程发项目至tomcat 的异常处理
查看>>
__stdcall,__cdecl,_cdecl,_stdcall,__fastcall,_fastcall 区别简介
查看>>
skyline的fly工程中引用数据路径修改
查看>>
myeclipse快捷键与快捷开发
查看>>
自定义pageControl
查看>>
DC的网络连接端口与防火墙设置[为企业部署Windows Server 2008系列十]
查看>>
repquota命令--Linux命令应用大词典729个命令解读
查看>>
关于若干选举算法的解释与实现
查看>>
C#学习常用类(3000)---ConcurrentDictionary<TKey,TValue>类
查看>>
我的友情链接
查看>>
设置vs解决方案跟随右边cpp
查看>>
XCode 4.2的Storyboard
查看>>