私はVS 2012とMVC4を使ってWebサイトを作ったが、それは私のlocalhostだが、公開してホストを置くと動作しない。 IISの構成は同じです。しかし、それは私にこのエラー行を与える:Asp.net MCV4フレームワークの問題
これはエラーです。
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: The 'targetFramework' attribute in the <compilation> element of the Web.config file is used only to target version 4.0 and later of the .NET Framework (for example, '<compilation targetFramework="4.0">'). The 'targetFramework' attribute currently references a version that is later than the installed version of the .NET Framework. Specify a valid target version of the .NET Framework, or install the required version of the .NET Framework.
Source Error:
Line 20: </appSettings>
Line 21: <system.web>
Line 22: <compilation targetFramework="4.5" />
Line 23: <httpRuntime targetFramework="4.5" />
Line 24: <authentication mode="Forms">
あなたはIIS 4.0を.NETにアプリケーションプールを更新する必要があり、事前
私はこの特定の問題について専門家はいませんが、これは本当にエラー全体ですか? –
私はエラー行を修正しました。 – nermik
.NET 4.5がサーバーにインストールされていますか? – jrummell