只是一个小查询
我使用.net web 服务并创建了简单的登录方法
[WebMethod]
public bool Login(string sUsername, string sPwd)
{
if (sUsername == Context.User.Identity.Name && **sPwd == "123456"**)
{
FormsAuthentication.SetAuthCookie(sUsername, true);
return true;
}
else
return false;
}
是否有任何密码属性,如 "Context.User.Identity.Name" 。或任何其他替代方案
请建议我是否遗漏了什么