userAdd.aspx.cs
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:1k
源码类别:
Email客户端
开发平台:
Visual C++
- using System;
- using System.Data;
- using System.Configuration;
- using System.Collections;
- using System.Web;
- using System.Web.Security;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.WebControls.WebParts;
- using System.Web.UI.HtmlControls;
- public partial class manage_sysUser_userAdd : System.Web.UI.Page
- {
- BaseClass bc = new BaseClass();
- protected void Page_Load(object sender, EventArgs e)
- {
- }
- protected void Button1_Click(object sender, EventArgs e)
- {
- if (TextBox2.Text == TextBox3.Text)
- {
- bc.ExecSQL("INSERT INTO tbUser( Name, PassWord, addDate)VALUES ('" + TextBox1.Text + "', '" + TextBox2.Text + "', '" + DateTime.Now.ToString() + "')");
- Response.Write(bc.MessageBox("操作员添加成功!"));
- TextBox3.Text = "";
- TextBox2.Text = "";
- TextBox1.Text = "";
- }
- else
- {
- Response.Write(bc.MessageBox("两次输入的密码不一致!"));
- }
- }
- protected void Button2_Click(object sender, EventArgs e)
- {
- TextBox3.Text = "";
- TextBox2.Text = "";
- TextBox1.Text = "";
- }
- }