Why is RowDeleting event of GridView Called Twice automatically !
Why does RowDeleting event of GridView in ASP.NET WebForms Called Twice automatically(in Chrome) !!
I Checked by tracing the events, it's working fine in IE and FF, but Chrome creating this problem开发者_Python百科.
Pls help.
May be you can put a condition in the GridView_RowDeleting
to verify if the row is deleted or not then accordingly you can cancel the Rowdeleting by e.cancel =true;
精彩评论