CRMAdd.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.Generic;
  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 CRMAdd : System.Web.UI.Page
  12. {
  13.     //模板
  14.     Model.CRM MR = new Model.CRM();
  15.     //业务
  16.     BLL.CRM BR = new BLL.CRM();
  17.     protected void Page_Load(object sender, EventArgs e)
  18.     {
  19.         LoginLogic.MatchLoad("../", "CRMAdd");
  20.     }
  21.   
  22.     protected void Button1_Click(object sender, EventArgs e)
  23.     {
  24.         try
  25.         {
  26.             int iWYID = 0;
  27.             if (!int.TryParse(KeyValue_WYID.Text, out iWYID))
  28.             {
  29.                 throw new Exception("内部系统ID必须为数字!");
  30.             }
  31.             MR.XM = KeyValue_XM.Text;
  32.             MR.NC = KeyValue_NC.Text;
  33.             MR.XB = KeyValue_XB.Text;
  34.             MR.GDDH = KeyValue_GDDH.Text;
  35.             MR.SJHM = KeyValue_SJHM.Text;
  36.             MR.Email = KeyValue_Email.Text;
  37.             MR.QQ = KeyValue_QQ.Text;
  38.             MR.MSN = KeyValue_MSN.Text;
  39.             MR.BZ = KeyValue_BZ.Text;
  40.             MR.GS = KeyValue_GS.Text;
  41.             MR.DZ = KeyValue_DZ.Text;
  42.             MR.WZ = KeyValue_WZ.Text;
  43.             MR.FL = KeyValue_FL.Text;
  44.             MR.XXDZ = KeyValue_XXDZ.Text;
  45.             MR.DLIP ="127.0.0.1";
  46.             MR.TJSJ = DateTime.Now;
  47.             MR.KFID = SessionInclude.SessionId;
  48.             MR.WYID = iWYID;
  49.             MR.ZHJHM = KeyValue_ZHJHM.Text;
  50.             BR.Add(MR);
  51.             MessageBox.Show("新建成功");
  52.             KeyValue_XM.Text = "";
  53.             KeyValue_NC.Text = "";
  54.             KeyValue_XB.Text = "";
  55.             KeyValue_GDDH.Text = "";
  56.             KeyValue_SJHM.Text = "";
  57.             KeyValue_Email.Text = "";
  58.             KeyValue_QQ.Text = "";
  59.             KeyValue_MSN.Text = "";
  60.             KeyValue_BZ.Text = "";
  61.             KeyValue_GS.Text = "";
  62.             KeyValue_DZ.Text = "";
  63.             KeyValue_WZ.Text = "";
  64.             KeyValue_FL.Text = "";
  65.             KeyValue_XXDZ.Text = "";
  66.             KeyValue_WYID.Text = "";
  67.             KeyValue_ZHJHM.Text = "";
  68.         }
  69.         catch (Exception exp)
  70.         {
  71.             MessageBox.Show(exp.Message);
  72.         }
  73.     }
  74. }