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

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_WorkFlowAdd : 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_WorkFlowAdd");
  24.         if (!IsPostBack)
  25.         {
  26.             DropLoadSet();
  27.         }
  28.     }
  29.     public void DropLoadSet()
  30.     {
  31.         //流程分类
  32.         KeyValue_LCFL.DataTextField = "FLMC";
  33.         KeyValue_LCFL.DataValueField = "ID";
  34.         KeyValue_LCFL.DataSource = EnumGet.FlowBaseTypeGetEnum();
  35.         KeyValue_LCFL.DataBind();
  36.         KeyValue_LCFL.SelectedIndex = KeyValue_LCFL.Items.Count - 1;
  37.         //表单分类
  38.         KeyValue_BDID.DataTextField = "BDMC";
  39.         KeyValue_BDID.DataValueField = "ID";
  40.         KeyValue_BDID.DataSource = EnumGet.FlowBaseFormGetEnum();
  41.         KeyValue_BDID.DataBind();
  42.         KeyValue_BDID.SelectedIndex = KeyValue_BDID.Items.Count - 1;
  43.     }
  44.     protected void Button1_Click(object sender, EventArgs e)
  45.     {
  46.         try
  47.         {
  48.             if (KeyValue_LCMC.Text == "")
  49.             {
  50.                 throw new Exception("流程名称不能为空!");
  51.             }
  52.             int ILCPXH = 0;
  53.             if (!int.TryParse(KeyValue_LCPXH.Text, out ILCPXH))
  54.             {
  55.                 throw new Exception("流程排序号必须为数字!");
  56.             }
  57.             MR.BDID = int.Parse(KeyValue_BDID.SelectedValue);
  58.             MR.LCFL = int.Parse(KeyValue_LCFL.SelectedValue);
  59.             MR.LCMC = KeyValue_LCMC.Text;
  60.             MR.LCJS = KeyValue_LCJS.Text;
  61.             MR.YXFJ = int.Parse(KeyValue_YXFJ.SelectedValue);
  62.             MR.LCPXH = ILCPXH;
  63.             BR.Add(MR);
  64.             MessageBox.Show("添加成功!");
  65.         }
  66.         catch(Exception exp)
  67.         {
  68.             MessageBox.Show(exp.Message);
  69.         }
  70.     }
  71.  
  72. }