你把它放在錯誤的web.config文件中。有兩個web.config文件。一個在Views
文件夾中,另一個在網站的根目錄中。把它放在web.config文件的system.web
標籤在站點根
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<connectionStrings />
<appSettings >
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="owin:AutomaticAppStartup" value="true" />
<add key="PreserveLoginUrl" value="true" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<system.web>
<authentication mode="Forms">
<forms loginUrl="~/Comfirm/Login" timeout="2880" />
</authentication>
</system.web>
<!--other configuration-->
<configuration>
你正在把它放在錯誤的web.config文件中。有兩個web.config文件。一個在'Views'文件夾中,另一個在網站的根目錄中。把它放在站點根目錄下配置文件的system.web標籤中。 – Nkosi
@Nkosi哦,我的上帝,9:36 pm,我的錯誤。它解決了。非常感謝 ! – user1465351