0

11s 7.5 で Web サイトをデプロイすると、次のエラーが発生します。

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: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level.  This error can be caused by a virtual directory not being configured as an application in IIS.

Source Error: 


Line 16:     <compilation debug="true" targetFramework="4.0" />
Line 17: 
Line 18:     <authentication mode="Forms">
Line 19:       <forms loginUrl="~/Account/Login.aspx" timeout="2880" />
Line 20:     </authentication>

ソース ファイル: C:\Users*\Documents\Visual Studio 2010\Projects\web\web\web.config 行: 18

テストのために Web サイトをローカルに展開しようとしています。

4

1 に答える 1

0

次の解決策を確認してください。

  1. bin および obj フォルダーを削除し、Clean Solution を実行して再度ビルドすると、エラーはなくなります。

  2. サイトが実行されているアプリケーション プールをチェックして、アプリケーション プールが (.NET 2.0 Framework ではなく) .NET 4.0 Framework を使用していることを確認します。

于 2012-07-18T11:14:54.197 に答える