userAdd.aspx.cs
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual 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 manage_sysUser_userAdd : System.Web.UI.Page
  12. {
  13.     BaseClass bc = new BaseClass();
  14.     protected void Page_Load(object sender, EventArgs e)
  15.     {
  16.     }
  17.     protected void Button1_Click(object sender, EventArgs e)
  18.     {
  19.         if (TextBox2.Text == TextBox3.Text)
  20.         {
  21.             bc.ExecSQL("INSERT INTO tbUser( Name, PassWord, addDate)VALUES ('" + TextBox1.Text + "', '" + TextBox2.Text + "', '" + DateTime.Now.ToString() + "')");
  22.             Response.Write(bc.MessageBox("操作员添加成功!"));
  23.             TextBox3.Text = "";
  24.             TextBox2.Text = "";
  25.             TextBox1.Text = "";
  26.         }
  27.         else
  28.         {
  29.             Response.Write(bc.MessageBox("两次输入的密码不一致!"));
  30.         }
  31.     }
  32.     protected void Button2_Click(object sender, EventArgs e)
  33.     {
  34.         TextBox3.Text = "";
  35.         TextBox2.Text = "";
  36.         TextBox1.Text = "";
  37.     }
  38. }