问题:表单身份验证显示正确设置。运行以下行时,应用程序将重定向回登录页面。没有打电话给其他页面。
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>
答案 0 :(得分:0)
问题出在web.config上。设置它的测试工作站不喜欢这个部分...
domain="xyz.com"
删除使整个过程发挥作用。