我在登录页面使用jquery,这里我需要捕获emailid和密码并存储在会话中以便在其他页面中使用。如何使用jquery存储在会话中输入的值。
我的代码
$.ajax({
type: "POST",
async: false,
dataType: "json",
contentType: "application/json; charset=utf-8",
url: "home.aspx/ValidateUser",
data: (JSON.stringify({ emailid: strEmail, password: strPassword })),
success: function (responseText) {
var IsUserExists = responseText.d
switch (IsUserExists) {
case "0":
alert("Your are not registered user. Please register yours before login.");
break;
case "1":
LoginToUserProfile(strEmail, strPassword);
break;
case "2":
alert("Please activate your account from you registered email and then try to login.");
break;
}
},
error: function (responseText) {
alert("Error in validation --->" + responseText);
}
});
return false;
}
function LoginToUserProfile(strEmail, strPassword) {
$.ajax({
type: "POST",
async: false,
dataType: "json",
contentType: "application/json; charset=utf-8",
url: "home.aspx/GetUserId",
data: (JSON.stringify({ emailid: strEmail, password: strPassword })),
success: function (responseText) {
var UserId = responseText.d
window.location = "users/userhomepage.aspx?userid=" + UserId;
},
error: function (responseText) {
alert("Error in LoginToUserProfile --->" + responseText);
}
});
return false;
}
如何在login.help me
中存储会话中的电子邮件ID和密码值答案 0 :(得分:1)
您必须将其存储在您的控制器中,然后存储到您需要使用它的每个页面(在UI中),创建一个填充了必要信息的隐藏字段。
在您的网址中,将值更改为"url: Home/ValidateUser"
,在您的家庭控制器中,您应该定义ValidateUser操作。
public ValidateUser(string emailid, string password)
{
Session["email"] = emailid;
Session["password"] = password;
}
但是,如果您要进行身份验证,请重新考虑使用更常用的解决方案。