ログインページで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 からのセッションで電子メール ID とパスワードの値を保存するにはどうすればよいですか?