protected void btnSave_Click(object sender, EventArgs e) { lblError.Text = string.Empty; lblError.Visible = false; lblSave.Text = string.Empty; lblSave.Visible = false; lblMessage.Visible = false; lblMessage.Text = string.Empty; try { bool exists = OtherSourceManager.IsExist(txtOtherSource.Text.Trim(), Convert.ToInt32(hdId.Value)); if (exists) { lblMessage.Text = "Other Source allready exists."; lblMessage.Visible = true; txtOtherSource.Focus(); return; } OtherSourceMaster obj = OtherSourceManager.GetbyOtherSourceId(Convert.ToInt32(hdId.Value)); obj.OtherSource = txtOtherSource.Text; obj.Status = true; OtherSourceManager.Save(obj); saveMsg = hdId.Value == "0" ? "Record Saved Sucessfully." : "Record Updated Sucessfully."; btnCancel_Click(null, null); lblSave.Text = saveMsg; lblSave.Visible = true; } catch (Exception ex) { lblError.Visible = true; lblError.Text = "Record Not Saved !!!"; } }
protected void lvData_ItemCommand(object sender, ListViewCommandEventArgs e) { lblError.Text = string.Empty; lblSave.Text = string.Empty; lblMessage.Text = string.Empty; lblMessage.Visible = false; lblError.Visible = false; lblSave.Visible = false; if (e.CommandName.Equals("DoEdit")) { int Id = Convert.ToInt32(e.CommandArgument); hdId.Value = Id.ToString(); Label lblOtherSource = (Label)e.Item.FindControl("lblOtherSource"); txtOtherSource.Text = lblOtherSource.Text; } else if (e.CommandName.Equals("DoDelete")) { try { var list = CheckPrimaryValue.CheckPrimaryValueExists(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, Convert.ToInt32(e.CommandArgument)); if (list.ToList().Count > 0) { lblMessage.Text = "Other Source is used so you can't delete !!!"; lblMessage.Visible = true; return; } var dt = OtherSourceManager.GetbyOtherSourceId(Convert.ToInt32(e.CommandArgument)); dt.Status = false; OtherSourceManager.Save(dt); DoBind(); lblSave.Text = "Record Deleted Sucessfully."; lblSave.Visible = true; } catch (Exception ex) { lblError.Text = "Record Not Deleted."; lblError.Visible = true; } } }