如何在asp.net转发器中更改一行的样式?

时间:2015-09-18 06:43:59

标签: c# asp.net repeater

我想在选中的行单元格中点击按钮后更改asp:repeater控件中的一行样式。

特别是我想禁用此行,并且样式显示已禁用此行。我不想只禁用按钮并更改行可见性​​。我想改变风格。

如何在代码后面的asp转发器中更改行样式?

1 个答案:

答案 0 :(得分:1)

您可以使用onitemdatabound asp:repeater事件来执行此操作。在asp:repeater你必须写:

onitemdatabound="Rptr1_ItemDataBound"

Rptr1_ItemDataBound是我后面代码中的方法名称:

protected void Rptr1_ItemCommand(object source, RepeaterCommandEventArgs e)
{
    //Your custom code goes here
}

如需更好的帮助,请发布您的代码。