我想在选中的行单元格中点击按钮后更改asp:repeater控件中的一行样式。
特别是我想禁用此行,并且样式显示已禁用此行。我不想只禁用按钮并更改行可见性。我想改变风格。
如何在代码后面的asp转发器中更改行样式?
答案 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
}
如需更好的帮助,请发布您的代码。