我在sharepoint中有一个调查列表,我想使用c#代码添加一个调查答案,我认为这可以解释为在列表中添加一个项目,所以我尝试了下一个但是没有用。
如何做到这一点?
using (SPSite site = new SPSite("http://user-pc"))
{
using (SPWeb web = site.RootWeb)
{
try
{
SPList olist = web.Lists["JobSchedulle"]; //<- Name of the survey in sharepoint 2010
SPListItem item = olist.Items.Add();
item[5] = "good";// <- this survey only has one question, and is a text option ..
item.Update();
}
catch {
Console.ReadLine();
}
}
}
答案 0 :(得分:0)
我发现错误 - 代码有效,但我正在访问item[5]
(索引错误)。