我在 asp.net mvc4 中使用身份验证
<authentication mode="Forms">
<forms loginUrl="~/Login" timeout="2880" />
</authentication>
当我没有登录时,无法调用在 RegisterController 中注册的函数。我试试
<location path="~/Register">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
但不是。怎么解决?