📄 login.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 User;
public partial class Login : PageBase
{
Logins lo = new Logins();
GetUID ge = new GetUID();
protected void Page_Load(object sender, EventArgs e)
{
}
protected void login_btn_Click(object sender, EventArgs e)
{
if (name_txt.Text.Length == 0) {
Response.Write("<script>alert('用户名不能为空');</script>");
name_txt.Focus();
}
else if (pass_txt.Text.Length == 0)
{
Response.Write("<script>alert('密码不能为空');</script>");
pass_txt.Focus();
}
else
{
bool yes = lo.loginuser(name_txt.Text, pass_txt.Text);
if (yes)
{
Session["Login"] = ge.GetUIDs(name_txt.Text);
Session["name"] = name_txt.Text;
Response.Redirect("Default.aspx");
}
else {
Response.Write("<script>alert('登录失败');</script>");
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -