I am trying to access the items in a SharePoint 2010 list from a custom webpart. When using threading, the List.ItemCount property is accurate, but the item collection is empty. Has anyone found a way around this? My code for accessing the list is below:
protected override void RenderContents(System.Web.UI.HtmlTextWriter writer)
{
Thread wThread = new Thread(new ThreadStart(WriteW));
//only showing one thread for simplicity
wThread.Start();
Thread.Sleep(500);
while (threadcount > 0)
{
Thread.Sleep(400);
}
lblGreeting.RenderControl(writer);
}
public void WriteW()
{
lock (lockobject)
{
threadcount++;
}
SPSite spsConflictSite = new SPSite("http://myserver/mysite");
SPWeb spwConflictWeb = spsConflictSite.OpenWeb();
SPList splConflictList = spwConflictWeb.Lists["Thread Tester List"];
DataTable myTable = splConflictList.Items.GetDataTable();
lblGreeting.Text += " " + myTable.Rows[0]["Title"].ToString();
spsConflictSite.Dispose();
lock (lockobject)
{
threadcount--;
}
}
Thanks in advance =)
threadcountmember variable in theWriteWmethod, you should be doing the same around the reading of it in theRenderContentsmethod. – Jesse C. Slicer Nov 23 '10 at 22:20Dispose-ing ofspsConflictSite, you should be doing the same withspwConflictWebandmyTablesince they both implementIDisposable. – Jesse C. Slicer Nov 23 '10 at 22:33