| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Data;
- using HySoft.Common;
- namespace HySoft.BaseCallCenter.Web.sysmanage
- {
- public partial class sysconfigedit : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- if (Request.QueryString["getPuction"].ToString() == "Edit")
- {
- getOrderInformerEdit(Request.QueryString["singleFlage"].ToString());
- }
- }
- }
- /// <summary>
- /// 初始化信息
- /// </summary>
- private void getOrderInformerEdit(string Flage)
- {
- DataTable dt = new DataTable();
- DataTable dtItems = new DataTable();
- string sql = "select * from T_Sys_SystemConfig where F_ParamId=" + Flage + "";
- dt = DBUtility.DbHelperSQL.Query(sql).Tables[0];
- if (dt.Rows.Count > 0)
- {
- F_ParamCode.Text = dt.Rows[0]["F_ParamCode"].ToString();
- F_ParamValue.Text = dt.Rows[0]["F_ParamValue"].ToString();
- F_ParamDes.Text = dt.Rows[0]["F_ParamDes"].ToString();
- }
- }
- /// <summary>
- /// 保存订单信息。
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected void btnSubmit_Click(object sender, EventArgs e)
- {
- HySoft.BaseCallCenter.Model.T_Sys_SystemConfig orderModel = new Model.T_Sys_SystemConfig();
- HySoft.BaseCallCenter.BLL.T_Sys_SystemConfig orderBll = new BLL.T_Sys_SystemConfig();
- try
- {
- orderModel.F_ParamCode = F_ParamCode.Text.Trim();
- orderModel.F_ParamValue = F_ParamValue.Text.Trim();
- orderModel.F_ParamDes = F_ParamDes.Text.Trim();
- orderModel.F_State = 0;
- if (Request.QueryString["getPuction"] == "Add")
- {
- int count = orderBll.Add(orderModel);
- if (count > 0)
- {
- MessageBoxToWindow("新增成功", "新增提示", "success");
- }
- else
- {
- MessageBoxToWindow("新增失败", "新增提示!", "error");
- }
- }
- if (Request.QueryString["getPuction"] == "Edit")
- {
- orderModel.F_ParamId = Convert.ToInt32(Request.QueryString["singleFlage"]);
- if (orderBll.Update(orderModel))
- {
- MessageBoxToWindow("修改成功", "修改提示!", "success");
- }
- else
- {
- MessageBoxToWindow("修改失败", "修改提示!", "error");
- }
- }
- }
- catch
- {
- MessageBoxToWindow("新增失败", "新增提示!", "error");
- }
-
- }
- #region 弹出对话框
- /// <summary>
- /// 弹出对话框
- /// </summary>
- /// <param name="title"></param>
- /// <param name="content"></param>
- /// <param name="type"></param>
- public void MessageBoxToWindow(string title, string content, string type)
- {
- string script = "";
- switch (type)
- {
- case "error"://失败
- type = "error";
- script = "<script type='text/javascript'> $.ligerDialog.alert('" + title + "','" + content + "','" + type + "');</script>";
- break;
- case "success"://成功
- type = "info";
- script = "<script type='text/javascript'> $.ligerDialog.alert('" + title + "','" + content + "','" + type + "',CloseThis);</script>";
- break;
- case "catch"://异常
- type = "warning";
- script = "<script type='text/javascript'> $.ligerDialog.alert('" + title + "','" + content + "','" + type + "');</script>";
- break;
- default:
- type = "question";
- break;
- }
- ClientScript.RegisterClientScriptBlock(this.GetType(), "", script);
- }
- #endregion
- }
- }
|