WorkFlowEdit.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. public partial class WorkFlow_WorkFlowEdit : System.Web.UI.Page
  12. {
  13.     /// <summary>
  14.     /// 模型
  15.     /// </summary>
  16.     Model.FlowBase MR = new Model.FlowBase();
  17.     /// <summary>
  18.     /// 业务
  19.     /// </summary>
  20.     BLL.FlowBase BR = new BLL.FlowBase();
  21.     protected void Page_Load(object sender, EventArgs e)
  22.     {
  23.         LoginLogic.MatchLoad("../", "WorkFlow_WorkFlowEdit");
  24.         if (!IsPostBack)
  25.         {
  26.             DropLoadSet();
  27.             object fmid = Request.QueryString["id"];
  28.             if (fmid != null)
  29.             {
  30.                string intFormId = fmid.ToString();
  31.                 MR = BR.GetModel(int.Parse(intFormId));
  32.                 KeyValue_BDID.SelectedValue = MR.BDID.ToString();
  33.                 KeyValue_LCFL.SelectedValue = MR.LCFL.ToString();
  34.                 KeyValue_LCMC.Text = MR.LCMC;
  35.                 KeyValue_LCJS.Text = MR.LCJS;
  36.                 KeyValue_YXFJ.SelectedValue = MR.YXFJ.ToString();
  37.                 KeyValue_LCPXH.Text = MR.LCPXH.ToString();
  38.             }
  39.         }
  40.     }
  41.     public void DropLoadSet()
  42.     {
  43.         //流程分类
  44.         KeyValue_LCFL.DataTextField = "FLMC";
  45.         KeyValue_LCFL.DataValueField = "ID";
  46.         KeyValue_LCFL.DataSource = EnumGet.FlowBaseTypeGetEnum();
  47.         KeyValue_LCFL.DataBind();
  48.         KeyValue_LCFL.SelectedIndex = KeyValue_LCFL.Items.Count - 1;
  49.         //表单分类
  50.         KeyValue_BDID.DataTextField = "BDMC";
  51.         KeyValue_BDID.DataValueField = "ID";
  52.         KeyValue_BDID.DataSource = EnumGet.FlowBaseFormGetEnum();
  53.         KeyValue_BDID.DataBind();
  54.         KeyValue_BDID.SelectedIndex = KeyValue_BDID.Items.Count - 1;
  55.     }
  56.     protected void Button1_Click(object sender, EventArgs e)
  57.     {
  58.         try
  59.         {
  60.             if (KeyValue_LCMC.Text == "")
  61.             {
  62.                 throw new Exception("流程名称不能为空!");
  63.             }
  64.             int ILCPXH = 0;
  65.             if (!int.TryParse(KeyValue_LCPXH.Text, out ILCPXH))
  66.             {
  67.                 throw new Exception("流程排序号必须为数字!");
  68.             }
  69.             MR.ID = int.Parse(Request.QueryString["id"].ToString());
  70.             MR.BDID = int.Parse(KeyValue_BDID.SelectedValue);
  71.             MR.LCFL = int.Parse(KeyValue_LCFL.SelectedValue);
  72.             MR.LCMC = KeyValue_LCMC.Text;
  73.             MR.LCJS = KeyValue_LCJS.Text;
  74.             MR.YXFJ = int.Parse(KeyValue_YXFJ.SelectedValue);
  75.             MR.LCPXH = ILCPXH;
  76.             BR.Update(MR);
  77.             MessageBox.Show("更新成功!");
  78.         }
  79.         catch(Exception exp)
  80.         {
  81.             MessageBox.Show(exp.Message);
  82.         }
  83.     }
  84. }