Category Archives: Sharepoint 2007

Insert/Retrive CheckBox Value to Sharepoint List

hi, How to insert/Retrive a chekbox value to sharepoint list. 1.this checkbox contol in desingpage <asp:CheckBoxList ID=”chkName” runat=”server” RepeatDirection=”Horizontal” Width=”100%”> <asp:ListItem Text=”chk1″ Value=”0″></asp:ListItem> <asp:ListItem Text=”chk2″ Value=”1″></asp:ListItem> <asp:ListItem Text=”chk3″ Value=”2″></asp:ListItem> </asp:CheckBoxList> 2. create method called GetSelectedIDs(chkName) public string GetSelectedIDs(CheckBoxList cblSelected) { … Continue reading

Posted in Sharepoint 2007 | Leave a comment

How to insert a data into Sharepoint List

internal static bool Insert(WorkOrderBL workOrderBL, bool IsInsert) { SPSite spSite; SPWeb spWeb; SPList spList; SPSecurity.RunWithElevatedPrivileges(delegate() { using (spSite = new SPSite(SPContext.Current.Site.Url)) { spSite.AllowUnsafeUpdates = true; using (spWeb = spSite.OpenWeb()) { spWeb.AllowUnsafeUpdates = true; spList = spWeb.Lists[“DET_WorkOrders”]; if (IsListExists(“DET_WorkOrders”, false)) { … Continue reading

Posted in Sharepoint 2007 | Leave a comment