SPList refList = web.Lists["refLstAAProgress"];
SPQuery query = new SPQuery();
//
WITH MORE RESCRICTIONS
//
SIMPLE FILTERING
SPListItemCollection collec = refList.GetItems(query);
//
UPDATE AN ENTRY
{
itemEdit["colIsDone"]= "True";
web.AllowUnsafeUpdates= true;itemEdit.SystemUpdate();
}
web.AllowUnsafeUpdates= false;
//ADD AN ITEM TO THE LIST
SPWeb web = site.RootWeb;
SPList refList = web.Lists["refLstStageTracking"];
SPListItem newListItem =logginList.Items.Add();
newListItem["Title"] ="GOGOGO";
newListItem["colFormName"] =pFromName;
newListItem["colStage"] = pStage;
newListItem["colLoginName"] = pLoginName;
newListItem.Update();
No comments:
Post a Comment