- 打开visualstudio软件,新建一个Userlogin.apsx,webform2.aspx,webform3.aspx网页。
-
在Userlogin.apsx中设计用户登录界面。
2.png - 双击“登录”按钮,在此按钮的时间里编写如下代码:
protected void Button1_Click(object sender, EventArgs e)
{
Session["user"] = TextBox1.Text;//传递参数
Session["password"] = TextBox2.Text;
if (TextBox1.Text == "TF" && TextBox2.Text == "YYQX")
{
Server.Transfer("webform2.aspx");//如果满足条件,则跳转到webform2.aspx
}
else {
Server.Transfer("webform3.aspx");//否则,跳转到webform3.aspx
}
}
}
}
- 在webform2.aspx中设计用户登录成功后的跳转界面。
-
在webform3.aspx中设计用户登录不成功后的错误界面。
3.png
运行结果如图所示
image.pngimage.png
网友评论