MeetingRoomAdd.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 General_MeetingRoomAdd : System.Web.UI.Page
  12. {
  13.     //模板
  14.     Model.MeetingRooms MM = new Model.MeetingRooms();
  15.     //业务
  16.     BLL.MeetingRooms BM = new BLL.MeetingRooms();
  17.     protected void Page_Load(object sender, EventArgs e)
  18.     {
  19.         LoginLogic.MatchLoad("../", "General_MeetingRoomAdd");
  20.     }
  21.     protected void Button1_Click(object sender, EventArgs e)
  22.     {
  23.         try
  24.         {
  25.             if (String.IsNullOrEmpty(KeyValue_MC.Text.Trim()))
  26.             {
  27.                 throw new Exception("名称不能为空!");
  28.             }
  29.             if (BM.GetCount("MC = '" + KeyValue_MC.Text + "'") > 0)
  30.             {
  31.                 throw new Exception("该名称已经存在!");
  32.             }
  33.             int IKeyValue_KRNS = 0;
  34.             if (!int.TryParse(KeyValue_KRNS.Text, out IKeyValue_KRNS))
  35.             {
  36.                 throw new Exception("可容纳人数不正确!");
  37.             }
  38.             if (IKeyValue_KRNS <= 0)
  39.             {
  40.                 throw new Exception("可容纳人数必须大于0!");
  41.             }
  42.             if (String.IsNullOrEmpty(KeyValue_SBQK.Text))
  43.             {
  44.                 throw new Exception("设备情况不能为空!");
  45.             }
  46.             if (String.IsNullOrEmpty(KeyValue_HYSMS.Text))
  47.             {
  48.                 throw new Exception("会议室描述不能为空!");
  49.             }
  50.             if (String.IsNullOrEmpty(KeyValue_DD.Text))
  51.             {
  52.                 throw new Exception("地点不能为空!");
  53.             }
  54.             MM.MC = KeyValue_MC.Text;
  55.             MM.KRNS = IKeyValue_KRNS;
  56.             MM.SBQK = KeyValue_SBQK.Text;
  57.             MM.HYSMS = KeyValue_HYSMS.Text;
  58.             MM.DD = KeyValue_DD.Text;
  59.             BM.Add(MM);
  60.             MessageBox.Show("添加成功!");
  61.             KeyValue_MC.Text = "";
  62.             KeyValue_KRNS.Text = "";
  63.             KeyValue_SBQK.Text = "";
  64.             KeyValue_HYSMS.Text = "";
  65.             KeyValue_DD.Text = "";
  66.         }
  67.         catch (Exception exp)
  68.         {
  69.             MessageBox.Show(exp.Message);
  70.         }
  71.     }
  72. }