HotelsAdd.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 Hotels_HotelsAdd : System.Web.UI.Page
  12. {
  13.     //模板
  14.     Model.Hotels MH = new Model.Hotels();
  15.     //业务
  16.     BLL.Hotels BH = new BLL.Hotels();
  17.     protected void Page_Load(object sender, EventArgs e)
  18.     {
  19.         LoginLogic.MatchLoad("../", "Hotels_HotelsAdd");
  20.     }
  21.     protected void Button1_Click(object sender, EventArgs e)
  22.     {
  23.         try
  24.         {
  25.             if (String.IsNullOrEmpty(KeyValue_ZSLBM.Text))
  26.             {
  27.                 throw new Exception("住宿别名不能为空!");
  28.             }
  29.             if (String.IsNullOrEmpty(KeyValue_BGLDM.Text))
  30.             {
  31.                 throw new Exception("宾馆旅店名不能为空!");
  32.             }
  33.             int IKeyValue_ZSTS = 0;
  34.             if (!int.TryParse(KeyValue_ZSTS.Text, out IKeyValue_ZSTS))
  35.             {
  36.                 throw new Exception("住宿天数不正确!");
  37.             }
  38.             decimal DKeyValue_ZJG = 0;
  39.             if (!decimal.TryParse(KeyValue_ZJG.Text, out DKeyValue_ZJG))
  40.             {
  41.                 throw new Exception("总价格不正确!");
  42.             }
  43.             MH.ZSLBM = KeyValue_ZSLBM.Text;
  44.             MH.BGLDM = KeyValue_BGLDM.Text;
  45.             MH.ZSTS = IKeyValue_ZSTS;
  46.             MH.ZSDWDH = KeyValue_ZSDWDH.Text;
  47.             MH.ZJG = DKeyValue_ZJG;
  48.             MH.BZ = KeyValue_BZ.Text;
  49.             BH.Add(MH);
  50.             MessageBox.Show("添加成功!");
  51.             KeyValue_ZSLBM.Text = "";
  52.             KeyValue_BGLDM.Text = "";
  53.             KeyValue_ZSTS.Text = "";
  54.             KeyValue_ZSDWDH.Text = "";
  55.             KeyValue_ZJG.Text = "";
  56.             KeyValue_BZ.Text = "";
  57.         }
  58.         catch (Exception exp)
  59.         {
  60.             MessageBox.Show(exp.Message);
  61.         }
  62.     }
  63. }