1
我試圖改變:我在哪裏更改ASP NET MVC 3中的登錄URL?
<authentication mode="Forms">
<forms name="login" protection="All" timeout="30" loginUrl="~/User1/Login" defaultUrl="~/">
</forms>
</authentication>
但它不工作。
我試圖改變:我在哪裏更改ASP NET MVC 3中的登錄URL?
<authentication mode="Forms">
<forms name="login" protection="All" timeout="30" loginUrl="~/User1/Login" defaultUrl="~/">
</forms>
</authentication>
但它不工作。
這是一個known issue。嘗試將loginUrl
鍵添加到appSettings
部分:
<appSettings>
<add key="loginUrl" value="~/User1/Login" />
<appSettings>