⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 user_forget.aspx.cs

📁 一个很好的物流管理系统网站!
💻 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 user_forget : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        SqlConnection strcon = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["strcon"]);
        strcon.Open();
        SqlCommand scd = new SqlCommand("select Userpwd from tb_User where Username='"+this.username.Text.ToString()+"' and Email='"+this.email.Text.ToString()+"' and Problem='"+this.problem.Text.ToString()+"' and Answer='"+this.answer.Text.ToString()+"'",strcon);
        string userpwd = Convert.ToString(scd.ExecuteScalar());
        if (userpwd != "")
        {
            this.Label1.Text = "您的密码是:<font color=red>" + userpwd+"</font>";
        }
        else
        {
            this.Label1.Text = "<font color=red>对不起,请输入的条件有误</font>";
        }
        strcon.Close();
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -