我正在使用 Visual Studio 2010 对我的 Web 部件进行编码。
我有一个CheckBoxList
从我的 SharePoint 中检索内容。
SPWeb objCurrentWeb;
SPList objStaffList;
objCurrentWeb = SPContext.Current.Web;
//Using SharePoint object model to retrieve both lists
objStaffList = objCurrentWeb.Lists["Staff List"];
foreach (SPListItem objStaffListItem in objStaffList.Items)
{
staffList.Items.Add(Convert.ToString(objStaffListItem["Name"]));
break;
}
我Button
在这个 webpart 上有另一个来检索DateTimeControl
. 每当我按下 时Button
,上面的列表都会在我的CheckBoxList
.
我如何使它不会添加项目staffList
?