using (SPSite spSite = new SPSite(strSiteUrl, token))
{
spSite.AllowUnsafeUpdates = true;
using (SPWeb spWeb = spSite.OpenWeb())
{
SPList spList = spWeb.Lists["Enquiry"];
SPListItem spListItem = spList.Items.Add();
spListItem["Title"] = "Peak";
spListItem["Location"] = "India";
spWeb.AllowUnsafeUpdates = true;
spListItem.Update();
}
}
{
spSite.AllowUnsafeUpdates = true;
using (SPWeb spWeb = spSite.OpenWeb())
{
SPList spList = spWeb.Lists["Enquiry"];
SPListItem spListItem = spList.Items.Add();
spListItem["Title"] = "Peak";
spListItem["Location"] = "India";
spWeb.AllowUnsafeUpdates = true;
spListItem.Update();
}
}
No comments:
Post a Comment