RollRoomAdd.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 FileBooks_RollRoomAdd : System.Web.UI.Page
  12. {
  13.     //模板
  14.     Model.RollRooms MR = new Model.RollRooms();
  15.     //业务
  16.     BLL.RollRooms BR = new BLL.RollRooms();
  17.     protected void Page_Load(object sender, EventArgs e)
  18.     {
  19.         LoginLogic.MatchLoad("../", "FileBooks_RollRoomAdd");
  20.         if (!IsPostBack)
  21.         {
  22.             DropLoadSet();
  23.         }
  24.     }
  25.     public void DropLoadSet()
  26.     {
  27.         KeyValue_DeptId.DataTextField = "DeptName";
  28.         KeyValue_DeptId.DataValueField = "ID";
  29.         KeyValue_DeptId.DataSource = EnumGet.DepartmentGetEnum();
  30.         KeyValue_DeptId.DataBind();
  31.         ListItem linone = new ListItem();
  32.         linone.Text = "无";
  33.         linone.Value = "0";
  34.         KeyValue_DeptId.Items.Add(linone);
  35.         KeyValue_DeptId.SelectedIndex = KeyValue_DeptId.Items.Count - 1;
  36.     }
  37.     protected void Button1_Click(object sender, EventArgs e)
  38.     {
  39.         try
  40.         {
  41.         if (KeyValue_JKH.Text == "")
  42.         {
  43.             throw new Exception("卷库号不能为空!");
  44.         }
  45.         if (KeyValue_JKMC.Text == "")
  46.         {
  47.             throw new Exception("卷库名称不能为空!");
  48.         }
  49.        
  50.             MR.SSBM = this.KeyValue_DeptId.SelectedValue;
  51.             MR.JKH = KeyValue_JKH.Text;
  52.             MR.JKMC = KeyValue_JKMC.Text;
  53.             MR.BZ = KeyValue_BZ.Text;
  54.             BR.Add(MR);
  55.             MessageBox.Show("新建成功");
  56.             KeyValue_JKH.Text = "";
  57.             KeyValue_BZ.Text = "";
  58.             KeyValue_JKMC.Text = "";
  59.         }
  60.         catch(Exception exp)
  61.         {
  62.             MessageBox.Show(exp.Message);
  63.         }
  64.     }
  65. }