SharePoint中的FBA登录页面问题

时间:2012-03-06 17:28:14

标签: c# asp.net sharepoint fba

我有自定义登录代码的FBA sharepoint站点(见下文)。当用户登出侧系统并将Cookie值传递给FormsAuthentication.RedirectFromLoginPage(userName, false);时。它工作正常,直到这里。

问题是,如果用户离开系统并注销并使用不同的用户ID登录并进入我的SharePoint站点,则会跳过登录过程并且用户使用< em> old id (不是新的登录ID)。

如果用户输入sharepoint网站网址并重定向到共享网站,我们是否可以通过登录流程。

请大师帮助我。

    try
    {
        if (Request.Cookies[authCookie].Value.Length > 0 || Request.Cookies[authCookie].Value != null || Request.Cookies[authCookie].Value != "")
        {
            userName = Request.Cookies[authCookie].Value;
        }
    }
    catch (Exception ex)
    {
        Response.Redirect("https://qa.company.com/appssecured/login/servlet/LoginServlet?TARGET_URL=" + Request.Url);
    }
    if (true)
    {
        userName = Request.Cookies[authCookie].Value;
        FormsAuthentication.RedirectFromLoginPage(userName, false);
    }

的Web.Config

<authentication mode="Forms">
  <forms loginUrl="LoginAuth.aspx" timeout="2880" enableCrossAppRedirects="false" />
  <!--      <forms loginUrl="/_layouts/login.aspx" />-->
</authentication>

1 个答案:

答案 0 :(得分:1)

为什么不使用

FormsAuthentication.SignOut();
FormsAuthentication.RedirectToLoginPage();

这应该正确清除cookie并重定向到登录页面。