C#: How set "on row command" event handler of a gridview dynamically?
Can I change "on row command" event handler of a gridview 开发者_运维知识库dynamically from code and in run time? I use C#
Thanks
Just add your handlers somewhere in your code where you want changed (perhaps in a click event handler). If necessary, remove your old handler beforehand.
gridView.RowCommand -= MyOldRowCommandHandler;
gridView.RowCommand += MyNewRowCommandHandler;
精彩评论