Click here to Skip to main content
15,893,814 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Dear sir/mam

I am shailendra singh.I am fresher s/w Eng. so I couldn't understand for this error . How can be edit grid-view on run time .I am write code for editing but IT is show error message this is "The Grid View 'GridView1' fired event Row Editing which wasn't handled".
how can solve for this error.



Thanks for Advance

Shailendra singh
Posted

 
Share this answer
 
You need to create the method to handle that action. It should look something like this.
C#
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{

}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900