📄 wangjimima.aspx.cs
字号:
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;
using System.Data.SqlClient;
public partial class wangjimima : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.Label3.Text = "";
this.Label4.Text = "";
}
}
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("Server=.;Database=物流公司货运管理;uid=sa;pwd=;");
con.Open();
SqlCommand cmd = new SqlCommand("select count(*) from 用户表 where 用户编号 ='" + TextBox1.Text + "'", con);
int count = Convert.ToInt32(cmd.ExecuteScalar());
if (count > 0)
{
this.Panel1.Visible = false;
this.Panel2.Visible = true;
this.Label3.Text = this.TextBox1.Text;
}
else
{
this.Label1.Text = "用户名不正确!!!";
}
}
protected void Button2_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("Server=.;Database=物流公司货运管理;uid=sa;pwd=;");
con.Open();
SqlCommand cmd = new SqlCommand("select count(*) from 用户表 where 安全问题提示 ='" + TextBox2.Text + "'", con);
int count = Convert.ToInt32(cmd.ExecuteScalar());
if (count > 0)
{
this.Panel2.Visible = false;
this.Panel3.Visible = true;
this.Label3.Text = this.TextBox1.Text;
}
else
{
this.Label1.Text = "您的密码提示问题不正确!!!";
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -