Blog

Programmatically create a task item and assign to a SharePoint group

Posted by Vijai Anand Blogs | SharePoint 2010 Nov 17, 2012
In this blog you will see how to create a task item and assign to a SharePoint group using SharePoint object model

In this blog you will see how to create a task item and assign the task to a SharePoint group using SharePoint object model.


 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using Microsoft.SharePoint;

 

namespace Console

{

    class Program

    {

        static void Main(string[] args)

        {

            using (SPSite site = new SPSite(https://serverName.com/sites/TEST))

            {

                using (SPWeb web = site.OpenWeb())

                {

                    SPList list = web.Lists.TryGetList("Tasks");

                    if (list != null)

                    {

                        // get the SharePoint group

                        SPGroup group = web.Groups["Training Co-ordinator"];

 

                        // Create a new task item

                        SPListItem task = list.Items.Add();

                        SPFieldUserValue assignToGroup = new SPFieldUserValue(web, group.ID, group.Name);

                        task["AssignedTo"] = assignToGroup;

                        task["Title"] = "Testing";

                        task["Description"] = "Testing";                      

                        task.Update();

                    }

                }

            }

        }

    }

}

 

post comment
     
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
Join a Chapter
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.
Join a Chapter