dlmh_system/VRS/Management/Major_Edit.aspx.cs

62 lines
1.9 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace VRS.Management
{
public partial class Major_Edit : BasePage
{
DataService.BLL.admin_major bll = new DataService.BLL.admin_major();
DataService.BLL.admin_log log = new DataService.BLL.admin_log();
protected override void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DataLoad();
}
}
protected void DataLoad()
{
string Id = Request.Params["Id"];
if (!string.IsNullOrWhiteSpace(Id))
{
var model = bll.GetModel(Id);
name.Text = model.major_name;
dsc.Text = model.r1;
}
else
{
OnError(null);
}
}
protected void btnSure_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(name.Text))
{
RadAjaxManager1.Alert("场景名称不能为空!");
return;
}
var model = bll.GetModel(Request.Params["Id"]);
if (bll.GetRecordCount(string.Format(" major_name = '{0}' and major_id!='{1}' ", name.Text.Trim(), model.major_id)) > 0)
{
RadAjaxManager1.Alert("场景名称禁止重复!");
return;
}
model.major_name = name.Text.Trim();
model.r1 = dsc.Text.Trim();
if (bll.Update(model))
{
log.write_log("修改场景成功。" + "名称:" + name.Text.Trim() + "ID" + model.major_id);
RadAjaxManager1.ResponseScripts.Add("alert('修改成功!');CloseAndRebind();");
}
else
RadAjaxManager1.Alert("修改失败!");
}
}
}