We have couple of errors recorded in ULS logs with List
Id\GUID and we need to get the list name to troubleshoot further.
SPSite Site= new SPSite("Your Site Name");
SPWeb Web= Site.OpenWeb();
Guid id = new Guid("Your LIST GUID");
SPList list = Web.Lists.GetList(id, true);
SPWeb Web= Site.OpenWeb();
Guid id = new Guid("Your LIST GUID");
SPList list = Web.Lists.GetList(id, true);
Hope this helps
No comments:
Post a Comment