Dealing with gridview in asp.net -
When I added the 'Edit' column to a grid view, I found this error:
Gridview removed 'registered list' incident rowing, which was not operated.
How can I fix this?
You have to handle event rotating. In markup:
& lt; Asp: GridView id = "Registered List" runat = "Server" OnRowEditing = "Registered List / Edit" />
and in the following code:
protected void registered registered_rowEditing (Object Sender, GridViewEditEventArgs e) {// do stuff}
< / Pre>
Comments
Post a Comment