ASP.NET itemDataBound 怎么取得当前行

请问在ASP.NET中ItemDataBound里不用强类型DataSet怎么取出当前行?... 请问在ASP.NET 中ItemDataBound里不用强类型DataSet怎么取出当前行? 展开
 我来答
haode68
2012-05-16
知道答主
回答量:23
采纳率:0%
帮助的人:7.8万
展开全部
protected void Repeater1_ItemDataBound(object sender, System.Web.UI.WebControls.RepeaterItemEventArgs e)
{
switch (e.Item.ItemType)
{
case ListItemType.AlternatingItem:
case ListItemType.Item:
Label mylabel= (Label)e.Item.FindControl("mylabel");
DataRowView drv = (DataRowView)e.Item.DataItem;
if (drv["性别"].ToString()== "男") mylabel.ForeColor =Color.Red
break;
}
}
会穿衣服的猫
2012-05-16 · 贡献了超过171个回答
知道答主
回答量:171
采纳率:100%
帮助的人:36.2万
展开全部
protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
//设置鼠标滑过,行变色的效果
if (e.Row.RowType != DataControlRowType.EmptyDataRow && e.Row.RowType != DataControlRowType.Pager)
e.Row.Cells[8].Attributes.Add("style", "display: none");
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.CssStyle.Add("cursor", "hand");
e.Row.Attributes.Add("onclick", "this.cells[8].childNodes[0].click()");
e.Row.Attributes.Add("onMouseOver", "this.style.backgroundColor = '#f0faea';");
e.Row.Attributes.Add("onMouseOut", "this.style.backgroundColor = '';");
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
zly0304302
2012-05-16 · TA获得超过2462个赞
知道小有建树答主
回答量:744
采纳率:0%
帮助的人:609万
展开全部
itemDataBound 就是项绑定,也就是1行1行的绑定
追问
那比如说 我想当前行性别为男 的label 颜色变为红色 应该怎么弄
追答
后台itemDataBound 事件中获得这个label,设置颜色就行了
Label mylabel=e.Item.FindControl("yourlablename") as Label;
mylabel.ForeColor =Color.Red;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式