身份验证后,身份验证会重定向回Login.aspx

时间:2016-05-02 15:01:34

标签: asp.net webforms forms-authentication

问题:表单身份验证显示正确设置。运行以下行时,应用程序将重定向回登录页面。没有打电话给其他页面。

e.Authenticated = true;
FormsAuthentication.RedirectFromLoginPage(Login1.UserName, true);

的Web.config

<system.web>
<authentication mode="Forms">
    <forms name=".ASPXFORMSDEMO" loginUrl="login.aspx" protection="All" path="/" timeout="180" enableCrossAppRedirects="true" domain="xyz.com"/>
</authentication>
<authorization>
    <deny users="?"/>
    <allow users="*"/>
</authorization>
</system.web>

1 个答案:

答案 0 :(得分:0)

问题出在web.config上。设置它的测试工作站不喜欢这个部分...

domain="xyz.com"

删除使整个过程发挥作用。