我将“保存”按钮作为网格EditItemTemplate
的一部分。单击按钮我想禁用按钮以单击禁用效果。
UseSubmitBehavior="false"
属性实现这一目标的其他可能解决方案是什么?
答案 0 :(得分:0)
(在问题编辑中回答。转换为社区维基答案。请参阅Question with no answers, but issue solved in the comments (or extended in chat))
OP写道:以下是解决方案:
在
UseSubmitBehavior="false"
页面中为该按钮设置aspx
。- 醇>
在
.c
页面的RowDataBound
事件中,请输入以下代码:
///Grid row event RowDataBound
protected void gvr_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if ((e.Row.RowState & DataControlRowState.Edit) > 0)
{
///Creating the Save button object
Button btn = (Button)e.Row.Cells[6].FindControl("btnSave");
///Add the attribute to disblae the button
btn.Attributes.Add("onclick", "this.disabled=true;");
}
}
}