Sharepoint inserts a field of the People and group type.

Source: Internet
Author: User

The binding type is People and group.

Private void BindOwner ()
{
Using (SPSite site = new SPSite (siteurl ))
{
Using (SPWeb web = site. OpenWeb ())
{
DataTable ownerTable = Make_Table ();
Foreach (SPUser user in web. SiteGroups ["Owner"]. Users)
{
If (user. Name! = "System Account ")
{
DataRow row = ownerTable. NewRow ();
Row ["Name"] = user. Name;
Row ["LoginName"] = user. LoginName;
OwnerTable. Rows. Add (row );
}
}
DropDownListOwner. DataSource = ownerTable;
DropDownListOwner. DataTextField = "Name ";
DropDownListOwner. DataValueField = "LoginName ";
DropDownListOwner. DataBind ();
}
}
}

Private DataTable Make_Table ()
{
DataTable nameTable = new DataTable ("Names ");
NameTable. Columns. Add ("Name ");
NameTable. Columns. Add ("LoginName ");

Return nameTable;
}

 

 

Note:

 

 

 

Using (SPSite site = new SPSite (siteurl ))
{
Using (SPWeb web = site. OpenWeb ())
{
Try
{
Site. AllowUnsafeUpdates = true;
Web. AllowUnsafeUpdates = true;
SPList list = web. Lists ["AuditSystem"];
Item ["Owner"] = web. SiteUsers [DropDownListOwner. SelectedValue];
Item. Update ();
}
Catch (Exception ex)
{
Throw new Exception (ex. Message );
}
}

 

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.