public string InsertShippingProduct(ClsShippingProducts data) { string errMsg = ""; PuroTouchSQLDataContext puroTouchContext = new PuroTouchSQLDataContext(); try { tblShippingProduct oNewRow = new tblShippingProduct() { ShippingProduct = data.ShippingProduct, idShippingSvc = data.idShippingSvc, CreatedBy = data.CreatedBy, CreatedOn = (DateTime?)data.CreatedOn, //UpdatedBy = data.UpdatedBy, //UpdatedOn = (DateTime?)data.UpdatedOn, ActiveFlag = data.ActiveFlag }; puroTouchContext.GetTable <tblShippingProduct>().InsertOnSubmit(oNewRow); // Submit the changes to the database. puroTouchContext.SubmitChanges(); //newID = oNewRow.idTaskType; } catch (Exception ex) { errMsg = ex.Message.ToString(); } return(errMsg); }
private ClsShippingProducts populateObj(UserControl userControl) { ClsShippingProducts oRow = new ClsShippingProducts(); oRow.ShippingProduct = (userControl.FindControl("txtShippingProduct") as RadTextBox).Text; oRow.idShippingSvc = Convert.ToInt16((userControl.FindControl("rddlService") as RadDropDownList).SelectedValue); oRow.ActiveFlag = (userControl.FindControl("ActiveFlag") as RadButton).Checked; oRow.UpdatedBy = (string)(Session["userName"]); oRow.UpdatedOn = Convert.ToDateTime(DateTime.Now); return(oRow); }
protected void rgGrid_UpdateCommand(object sender, GridCommandEventArgs e) { try { UserControl userControl = (UserControl)e.Item.FindControl(GridEditFormItem.EditFormUserControlID); Label errorMsg = (Label)userControl.FindControl("lblErrorMessage"); ClsShippingProducts oRow = populateObj(userControl); oRow.idShippingProduct = Convert.ToInt16((userControl.FindControl("idShippingProduct") as Label).Text); string updateMsg = ""; if (IsValid) { if (oRow != null) { updateMsg = cls.UpdateShippingProduct(oRow); if (updateMsg == "") { pnlsuccess.Visible = true; lblSuccess.Text = "Successfully updated information for " + "'" + oRow.ShippingProduct + "'"; } else { errorMsg.Visible = true; errorMsg.Text = updateMsg; e.Canceled = true; } } } else { // display error errorMsg.Visible = true; errorMsg.Text = "Please enter Required fields"; e.Canceled = true; } } catch (Exception ex) { pnlDanger.Visible = true; lblDanger.Text = ex.Message.ToString(); e.Canceled = true; } }
protected void rgGrid_InsertCommand(object sender, GridCommandEventArgs e) { try { UserControl userControl = (UserControl)e.Item.FindControl(GridEditFormItem.EditFormUserControlID); Label errorMsg = (Label)userControl.FindControl("lblErrorMessage"); ClsShippingProducts oRow = populateObj(userControl); string insertMsg = ""; if (IsValid) { if (oRow != null) { insertMsg = cls.InsertShippingProduct(oRow); if (insertMsg == "") { pnlsuccess.Visible = true; lblSuccess.Text = "Successfully Added New Record " + oRow.ShippingProduct; } else { errorMsg.Visible = true; errorMsg.Text = insertMsg; e.Canceled = true; } } } else { // display error errorMsg.Visible = true; errorMsg.Text = "Please enter Required fields"; e.Canceled = true; } } catch (Exception ex) { pnlDanger.Visible = true; lblDanger.Text = ex.Message.ToString(); e.Canceled = true; } }
public string UpdateShippingProduct(ClsShippingProducts data) { string errMsg = ""; PuroTouchSQLDataContext puroTouchContext = new PuroTouchSQLDataContext(); try { if (data.idShippingSvc > 0) { // Query the database for the row to be updated. var query = from qdata in puroTouchContext.GetTable <tblShippingProduct>() where qdata.idShippingProduct == data.idShippingProduct select qdata; // Execute the query, and change the column values // you want to change. foreach (tblShippingProduct updRow in query) { updRow.ShippingProduct = data.ShippingProduct; updRow.idShippingSvc = data.idShippingSvc; updRow.ActiveFlag = data.ActiveFlag; updRow.idShippingProduct = data.idShippingProduct; updRow.UpdatedBy = data.UpdatedBy; updRow.UpdatedOn = data.UpdatedOn; } // Submit the changes to the database. puroTouchContext.SubmitChanges(); } else { errMsg = "There is No Shipping Product with ID = " + "'" + data.idShippingProduct + "'"; } } catch (Exception ex) { errMsg = ex.Message.ToString(); } return(errMsg); }