69 lines
2.0 KiB
C#
69 lines
2.0 KiB
C#
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 AdminRole_Edit : BasePage
|
||
{
|
||
DataService.BLL.admin_role bll = new DataService.BLL.admin_role();
|
||
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)
|
||
{
|
||
|
||
DataLoad();
|
||
}
|
||
}
|
||
|
||
protected void DataLoad()
|
||
{
|
||
string Id = Request.Params["Id"];
|
||
if (!string.IsNullOrWhiteSpace(Id))
|
||
{
|
||
var model = bll.GetModel(Id);
|
||
name.Text = model.role_name;
|
||
|
||
r1.Text = model.r1;
|
||
}
|
||
else
|
||
{
|
||
OnError(null);
|
||
}
|
||
}
|
||
|
||
protected void btnSure_Click(object sender, EventArgs e)
|
||
{
|
||
var id = Request.Params["Id"];
|
||
if (string.IsNullOrEmpty(name.Text.Trim()))
|
||
{
|
||
RadAjaxManager1.Alert("角色名称不能为空!");
|
||
return;
|
||
}
|
||
/*
|
||
if (bll.GetRecordCount(string.Format(" role_name = '{0}' and role_id != {1}", name.Text.Trim(), id)) > 0)
|
||
{
|
||
RadAjaxManager1.Alert("角色名称禁止重复!");
|
||
return;
|
||
}
|
||
*/
|
||
|
||
DataService.Model.admin_role model = bll.GetModel(id);
|
||
model.role_name = name.Text.Trim();
|
||
|
||
model.r1 = r1.Text.Trim();
|
||
if (bll.Update(model))
|
||
{
|
||
log.write_log("修改角色名称成功。" + "名称:" + model.role_name + ",ID:" + model.role_id);
|
||
RadAjaxManager1.ResponseScripts.Add("alert('修改成功!');CloseAndRebind();");
|
||
}
|
||
else
|
||
RadAjaxManager1.Alert("修改失败!");
|
||
}
|
||
}
|
||
} |