using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace VRS.Management.VSAT { public partial class Fault_Add : BasePage { DataService.BLL.pro_fault bll = new DataService.BLL.pro_fault(); DataService.BLL.admin_log log = new DataService.BLL.admin_log(); protected override void Page_Load(object sender, EventArgs e) { base.Page_Load(sender, e); if (!IsPostBack) { } } protected void btnSure_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(name.Text.Trim())) { RadAjaxManager1.Alert("故障名称不能为空!"); return; } if (bll.GetRecordCount(string.Format(" fault_name = '{0}' ", name.Text.Trim())) > 0) { RadAjaxManager1.Alert("故障名称禁止重复!"); return; } //设备名称唯一 DataService.Model.pro_fault model = new DataService.Model.pro_fault(); model.fault_id = bll.GetNewId(); model.fault_name = name.Text.Trim(); model.fault_code = code.Text.Trim(); model.create_time = DateTime.Now; model.r1 = r1.Text.Trim(); if (bll.Add(model)) { log.write_log("添加故障成功。" + "名称:" + model.fault_name + ",ID:" + model.fault_id); RadAjaxManager1.ResponseScripts.Add("alert('添加成功!');CloseAndRebind();"); } else { RadAjaxManager1.Alert("添加失败!"); } } } }