微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

GridView中的更新按钮不能触发RowUpdating事件

当点击“编辑”按钮以后,可以看到“更新”和“取消”按钮,“取消”按钮可以正常触发RowCancelingEdit事件,但是“更新”按钮不能触发RowUpdating事件。

解决方案:

在<asp:CommandField>中添加 CausesValidation="false"

 

Gridview RowUpdating Not Firing (RowUpdating event not firing on update button click for GridView Control)

After i click edit, i will get Update and Cancel button , Cancel Works. But Update doesnt.

It’s a bug of gridview .

Solution:

Add CausesValidation="false" into <asp:CommandField> .

<asp:CommandField ShowEditButton="True" ButtonType="Button" HeaderText="Edit" CausesValidation="false">
    <ItemStyle HorizontalAlign="Center" Width="140px" Font-Size="12px" BorderColor="#3D90CA"
                                   BorderStyle="Solid" BorderWidth="1px" />
    <HeaderStyle CssClass="DivReportHeader" BorderStyle="Solid" Height="20px" ForeColor="#ffffff"
                                   BorderWidth="1px" BorderColor="#0F517E" Font-Bold="True"></HeaderStyle>
</asp:CommandField>

 

REF:( http://objectmix.com/dotnet/352191-gridview-rowupdating-not-firing.html

( http://www.codenewsgroups.net/group/microsoft.public.dotnet.framework.aspnet.webcontrols/topic15667.aspx )

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐