2 tables joined in sqldatasource select command and shown in a gridview.how to edit,delete records in the gridview using autoupdate,autodelete buttons of the gridview??
Please reply ASAP.
Thanks in advance...
2 tables joined in sqldatasource select command and shown in a gridview.how to edit,delete records in the gridview using autoupdate,autodelete buttons of the gridview??
Please reply ASAP.
Thanks in advance...
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Guest UserPosted Jan 25, 2008, 2:24 PM
The select procedure is where you'll do the join to generate the recordset to be displayed in the grid.
The update procedure can do one or more updates to whichever tables need to be updated.
The logic of the delete procedure will most likely be the same as the update procedure, except it will be using the DELETE command instead.