激发了未处理的事件“RowEditing”
我点击编辑按钮的时候就出现这个错误GridView“GvTerm”激发了未处理的事件“RowEditing”。   请问什么原因呀??   
 代码-------------------------------------------------- 
 SqlConnection   conn   =   new   SqlConnection(ConfigurationSettings.AppSettings[ "ConnectDataBase "]); 
                         conn.Open();   
                         SqlDataAdapter   sda   =   new   SqlDataAdapter( "select   *   from   termname ",   conn); 
                         DataSet   ds   =   new   DataSet(); 
                         sda.Fill(ds);   
                         GvTerm.DataSource   =   ds; 
                         GvTerm.DataBind(); 
 ------------------------------- 
------解决方案--------------------你得写响应RowEditing事件 的方法, 
 选择GridView-> 属性-> 事件-> 添加对处理RowEditing的方法