When I insert data to a table, I used formView and stored procedure from a page, It works very well.
now I want to use gridview to bind the table data and update the fields. In the gridView it binds 2-3 tables fields (I actually use v_tables to have all the needed fields by joining those tables).
I want to add some functions(updating, deleting rows) from gridview and also would like to use stored procedure. But I do not know where to start.
basic thought is: click a row from the gridview for updating and then doing some changes for some fields and then click a button and the field data I made changes are updated by executing the stored procedure and display in the row (of course, the data in
the fields of the table in SQL server database are also changed)
Any help will be appreciated.
Go to the complete details ...