我遇到无限重定向问题。我试图让每个标签获得一个新的会话ID。我使用
完成了这项工作$.ajax({
type: "POST",
url: $('#setSessionUrl').data('url')+'?windowName='+window.name,
async: false,
success: function (result) {
if (result.relocate == false) {
var url = $('#loginUrl').data('url');
window.location = url;
}
},
error: function () {
var url = $('#loginUrl').data('url');
window.location = url;
}
});
我的Controller操作看起来像
LoginViewModel loginViewModel = new LoginViewModel();
SessionIDManager sessionIdManager = new GuidSessionIdManager();
var context = System.Web.HttpContext.Current;
string newId = sessionIdManager.CreateSessionID(context);
bool redirected, isAdded;
sessionIdManager.SaveSessionID(context, newId, out redirected, out isAdded);
if (!string.IsNullOrEmpty(update))
{
loginViewModel.UpdateStatus = update;
}
return View(loginViewModel);
这成功生成了一个新的会话ID,但它导致了无限的重定向循环。
我已将此添加到网络配置但没有运气,因为我注意到fiddler我收到状态代码302.我暂时删除了表单身份验证但没有运气
<location path="Views/Login" allowOverride="false">
<system.web>
<authorization>
<allow users="?"/>
<allow users="*"/>
</authorization>
</system.web>
</location>
我的SetSessionId操作就是这个
[HttpPost]
public ActionResult SetSessionId(string windowName)
{
if (Session["WindowId"] == null)
{
Session["WindowId"] = windowName;
return Json(new{relocate=true});
}
string window = Session["WindowId"].ToString();
if (window.ToLower()==windowName.ToLower())
return Json(new { relocate = true });
return Json(new { relocate = false ,windowId=windowName});
}
我正在使用无Cookie会话。目标是允许多个会话,而不是注销原始会话。
我添加了
context.Response.Redirect(Url.Action("Index"),false);
到我的登录操作,现在它不会无休止地重定向。但是原始选项卡会被注销。一旦我登录两个选项卡,我就会有单独的会话。如何避免在原始标签上注销?
答案 0 :(得分:0)
我通过修改我的行动来解决这个问题
ViewBag.IgnoreTimeout = true;
LoginViewModel loginViewModel = new LoginViewModel();
SessionIDManager sessionIdManager = new GuidSessionIdManager();
var context = System.Web.HttpContext.Current;
string newId = sessionIdManager.CreateSessionID(context);
bool redirected, isAdded;
sessionIdManager.SaveSessionID(context, newId, out redirected, out isAdded);
context.Session["WindowId"] = windowId;
context.Response.Redirect(Url.Action("Index"),false);
return View("Index",loginViewModel);
关键是这一行
context.Response.Redirect(Url.Action("Index"),false);
谁能告诉我为什么要这么做?