我需要将用户转移到需要存储在不同会话中的会话数据的页面。
在某些情况下,是否可以通过在用户的浏览器上设置会话cookie来迁移会话数据?
目前我没有解决方法,使用会话数据似乎是我目前唯一的选择。
答案 0 :(得分:1)
在某些情况下是否可能 通过设置迁移会话数据 用户的会话cookie 浏览器?
当然可以。只需设置一个新的cookie并重定向即可。您必须在服务器端执行此操作。设置会话cookie客户端将是有问题的。
const string sessionStateCookieName = "ASP.NET_SessionId";
string sessionId = "some session id";
HttpCookie cookie = new HttpCookie(sessionStateCookieName, sessionId) { Path = "/", HttpOnly = true };
Response.Cookies.Remove(sessionStateCookieName);
Response.Cookies.Add(cookie);
// force a redirect to complete session switch
Response.Redirect(Request.Path);
你可以扩展这个。这是一个工作示例.aspx页面。要切换会话,只需添加网址参数'sessionId'。
<%@ Page Language="C#" AutoEventWireup="true" %>
<script runat="server">
// this is the method that does the magic
protected override void OnPreInit(EventArgs e)
{
var sessionId = Request["sessionId"];
if (!string.IsNullOrEmpty(sessionId))
{
// this could be found via reflection if different sessionstate cookie name is used in config
const string sessionStateCookieName = "ASP.NET_SessionId";
HttpCookie cookie = new HttpCookie(sessionStateCookieName, sessionId) { Path = "/", HttpOnly = true };
Response.Cookies.Remove(sessionStateCookieName);
Response.Cookies.Add(cookie);
// force a redirect to complete session switch
Response.Redirect(Request.Path);
}
}
// the rest of this script is just demo code
protected void Page_Load(object sender, EventArgs e)
{
CurrentSessionIdLabel.Text = Session.SessionID;
}
protected void SwitchSessionButton_Click(object sender, EventArgs e)
{
// this is the session we wish to switch to
string switchToSessionId = SessionIdTextBox.Text;
Response.Redirect(Request.Path + "?sessionId=" + Server.UrlEncode(switchToSessionId));
}
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="Form1" runat="server">
<div>
Current SessionId<br />
<asp:Label ID="CurrentSessionIdLabel" runat="server"></asp:Label>
<br />
<br />
<asp:Label ID="Label1" runat="server" Text="Desired SessionId"></asp:Label>
<br />
<asp:TextBox ID="SessionIdTextBox" runat="server"></asp:TextBox>
<br />
<asp:Button ID="SwitchSessionButton" runat="server" Text="Switch Session" OnClick="SwitchSessionButton_Click" />
</div>
</form>
</body>
</html>
答案 1 :(得分:0)
不,浏览器不共享cookie。虽然如果你使用cookieless sessions它会起作用。
答案 2 :(得分:0)
如果您有登录机制,您只需将数据与登录用户(在数据库中?)关联,而不是将其放入会话中。