I have been trying to develop a CRUD using Sharepoint 2007, specifcally by means of Webpart components. I am not able to figure out how to get around such issue. I have been thinking of the following possibilites:
1- Create Webpart components for each CRUD operation (WebpartRetrieve, WebpartUpdate and so on), but some issues arise: how is it possbile to have the selected item's id in the list webpart transfered to WebpartUpdate in order to fecth the desired item from
the database (interaction between webparts).
2- Create a Webpart component for all operations: I will have just one Webpart that deals with all CRUD operations. I will have to implement if..else in order to render the corrected view (buttons, items, etc.). It will be a real mess.
As you guys can see I am really lost. Could someone help me?
Thanks in advance.