protected void btnLogin_Click(object sender, EventArgs e)
{
string name = txtName.Value.Trim();
string pwd = txtPwd.Value;
if (string.IsNullOrWhiteSpace(name) || string.IsNullOrWhiteSpace(pwd))
{
return;
}
name = HttpUtility.HtmlEncode(name);
pwd = HttpUtility.HtmlEncode(pwd);
string userid = loginuserbll.UserLogin(name, pwd);
if (!string.IsNullOrWhiteSpace(userid))
{
LoginUser.Login(userid);
Response.Redirect("index.aspx");
}
}
912288184 发表于 2015-4-2 15:27
if (string.IsNullOrWhiteSpace(name) || string.IsNullOrWhiteSpace(pwd))
{
...
912288184 发表于 2015-4-2 15:27
if (string.IsNullOrWhiteSpace(name) || string.IsNullOrWhiteSpace(pwd))
{
...
lyg1112 发表于 2015-4-22 15:27
新手吧,前端是做个君子看的,跳过前端页面直接post可能论坛里只有几个人不会 你就是其中一个
qjyyq1314 发表于 2016-6-18 17:43
分布式系统框架怎么登陆的 用户名和密码是什么?
欢迎光临 苏飞论坛 (http://www.sufeinet.com/) | Powered by Discuz! X3.4 |