Repeater,ItemDataBound事件,获取绑定列的值
Posted 向阳的影子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Repeater,ItemDataBound事件,获取绑定列的值相关的知识,希望对你有一定的参考价值。
protected void rp_bf_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
string str_if_end = DataBinder.Eval(e.Item.DataItem, "if_end").ToString();
if (str_if_end == "1") //drv.Row.ItemArray[0]就是你要取的数据源中的第0列了,你的Uname在第几列就自己写了。。。
{
htmlInputCheckBox cb = e.Item.FindControl("cbo_select") as HtmlInputCheckBox;
cb.Disabled = true;
}
}
}
以上是关于Repeater,ItemDataBound事件,获取绑定列的值的主要内容,如果未能解决你的问题,请参考以下文章
如何访问 ASP.NET Repeaters ItemDataBound 事件中的数据源字段?
ASP.NET如何在嵌套下的repeater中执行linkbutton点击事件?
我用Repeater绑定数据,我想让Repeater显示的数据 单击其中一个的时候 能自动追加到一个textbox里 怎么实