主题:登陆界面管理员和普通用户怎么做
我要做一个登陆界面,就是要有管理员和普通用户两中
管理员可以增,删,改,查
普通用户只能查询 应该怎么来做
这个是我现在写的
private void Button1_Click(object sender, System.EventArgs e)
{
if(txtName.Text=="123"&&txtPWD.Text=="123")
{
Session["Name"]=txtName.Text;
Response.Redirect("PersonList.aspx");
}
else
{
Response.Write("<script language=javascript>alert('输入的用户名或密码不正确');</script>");
}
}
管理员可以增,删,改,查
普通用户只能查询 应该怎么来做
这个是我现在写的
private void Button1_Click(object sender, System.EventArgs e)
{
if(txtName.Text=="123"&&txtPWD.Text=="123")
{
Session["Name"]=txtName.Text;
Response.Redirect("PersonList.aspx");
}
else
{
Response.Write("<script language=javascript>alert('输入的用户名或密码不正确');</script>");
}
}