为了账号安全,请及时绑定邮箱和手机立即绑定

请问phpwind 的 Cookie 运作?

请问phpwind 的 Cookie 运作?

达令说 2019-06-24 14:06:45
phpwind 的 Cookie 运作
查看完整描述

4 回答

?
慕容3067478

TA贡献1773条经验 获得超3个赞

private void btnLogin_Click(object sender, System.EventArgs e)
{

try
{

string userName=txtUserName.Text;
string password=txtPassword.Text;

if(userName.Equals(\"\"))
{
lbWarning.Text=TextProvider.GetTextProvider().GetText(\"login.need.username\");
return;
}
if(password.Equals(\"\"))
{
lbWarning.Text=TextProvider.GetTextProvider().GetText(\"login.need.password\");
return;
}

IWindsorContainer container = ContainerWebAccessorUtil.ObtainContainer();
IUserMgr userMgr=(IUserMgr)container[\"userMgr\"];

User u=userMgr.Login(userName,password);
if(u==null)
{
lbWarning.Text=TextProvider.GetTextProvider().GetText(\"login.error\");
return;
}
else
{
//lbWarning.Text=\"login ok!\";
userMgr.DoUpdateLastLoginTime(u.Id);
HttpContext.Current.Session[\"User\"] = u;
HttpContext.Current.Response.Redirect(\"index.aspx\", true);
}
}
catch(BusiException ex)
{
lbWarning.Text=ex.ShowMessage(ex);
}

}
}
}



查看完整回答
反对 回复 2019-06-29
?
精慕HU

TA贡献1845条经验 获得超8个赞

get_cookie 是用户自定义的函数;得到的cookie值应该被加密了;
你可以看下用户自定义设置cookie的函数,估计函数名是set_cookie;
看看设置cookie的时候,是如何加密的

查看完整回答
反对 回复 2019-06-29
  • 4 回答
  • 0 关注
  • 527 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信