I have a GridView with 4 columns and I would like to edit one row in a selected column on a button click, I want to replace my value in the column from ON to OFF, as my button says.
So when I click the OFF button the column “STATUS” will be changed to OFF from ON.
Please help 🙂
There are sooooo many tutorials on this.
This is one of the most basic operations with a
GridView, did you ever Google it?You can see here to start and then learn more what you can do with the
GridViewhereAssuming you are using jQuery to simplify the code
and then
and your handler just get’s the
idand thechangeFromfrom the query string and sends back the new valueONorOFF…