Päivittäminen ohjelmallisesti Luettelo sisältö SharePointissa

Hi Devs,

Alla on mallikoodia päivittää SharePoint-luettelon sisällön ohjelmallisesti käyttämällä SharePoint Object Model.

SPSite Sivuston = uusi SPSite(“http://localhost:21000”);
SPWeb Web = Site.OpenWeb();
SPList List = Web.Lists[“Osoitekirja”];
SPListItem Listitem = List.GetItemById(0);

string FullName = string.Empty;

FullName = ListItem[“Etunimi”].ToString() + ListItem.[“Sukunimi”].ToString();
SPListItem[“FullName”] = FullName;
ListItem.Update();

4 comments to Programmatically Update List Content in SharePoint

  • noreply@blogger.com (lis)

    Hi Uday,

    I have a custom list “Weekly Activity”, this is supposed to be entered daily and checked weekly. The problems I face are as follows:

    1. Team members can enter the activity daily but I am not being able to categorise it on a week basis( I used the group by facility but that does not give me what I want). that is Sunday to thursday week.

    2. I have a “Checked By” field which is meant only for the manager.. but the team members are being able to edit this field.

    3.Once an activity is checked by the manager, no team member should be able to go back and edit it.

    Kindly tell me how I can do the above on my custom list.

    thanks and Regards,
    lis

  • noreply@blogger.com (siva)

    Hi Uday,

    where do you write this code. On what event

  • noreply@blogger.com (Uday)

    Hi Lis,
    jo nyt me dont on sarake suojaus saatavilla OOB HELMINEULETTA.

    Ehdotukseni on, kirjoittaa tapahtumakäsittelijä ja “säästää” tapahtuma, tarkista henkilö kuuluu mihinkin päivityksen sisällön luetella. perustuu konsernin hän / hän kuuluu voit päivittää sisältöä.

    Kiitos,
    ~ Uday

  • noreply@blogger.com (Uday)

    Hei Siva,
    voit käyttää tätä pala koodi yrityksesi vaatimus.

    esim.
    voit käyttää tätä tapahtumakäsittely päivittää laskettu arvo muokatun sarakkeen arvojen perusteella käyttäjät syöttävät.

    Kiitos,
    ~ Uday.

Jätä vastaus

Voit käyttää näitä HTML-tagit

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>