I am asking that question asking looking at the about Tutorial 16: An Overview of Inserting, Updating, and Deleting Data where the link is the following:
http://msdn.microsoft.com/en-us/library/bb332381.aspx.
In the tutorial on the part about using the smart tag for a detailsview control, the tutorial shows there should be check box selections for:
1. Enable inserting,
2, Enable edit, and
3. Enable delete.
When I detailviews control on to my web form for a C# asp.net 2010 application, these options are not showing in my smart tag. I also looked in the source area of these detailsview control, and I do not see these options.
I do want to show the linq data source I am connecting to so you can see if there is a problem here:
Select="Att_id,Att_Date, Payment_Date,Received_Date"
TableName="Att" Where="Att_id == @Att_id"
EnableInsert="True" EnableUpdate="True">
Javeed M ShaikhPosted Nov 18, 2011, 3:52 PM