New answers tagged survey-list
1
surveys are just another type of lists, you insert items the same way you do it with normal lists
Here is sample code for manipulate list
SPList list = web.Lists["My survey"];
web.AllowUnsafeUpdates =true;
SPListItem item = list.Items.Add();
item["This is my question number 1"] = "this is the answer";
item.Update();
web.AllowUnsafeUpdates =false;
Hope ...
Top 50 recent answers are included