0

ビン、コンテンツ、スクリプト、ビュー、Web、グローバル、およびパッケージフォルダーがあるローカルマシンフォルダーにWebサイトを公開できました。filezillaを使用してこれらのフォルダをWebサーバーのルートに追加した後、Webサイトが機能しません。サーバーはasp.net4、ii7をサポートしています。手順は正確には何ですか。グーグルで答えを探しましたが、どれも役に立ちませんでした。私がこれを理解するのを手伝ってくれたら本当にありがたいです、ありがとう

更新の問題を修正しました:私のプロジェクトは4.0ではなく.net 4.5を使用していました...これにより、Webサイトを展開していたサーバーで問題が発生していました

4

2 に答える 2

2

アプリケーションをデプロイするには、次の2つの手順があります。

1. If ASP.NET MVC 3.0 is not installed on the server you should deploy the following set of assemblies in the bin folder of your web 
application:

Microsoft.Web.Infrastructure.dll
System.Web.Helpers.dll
System.Web.Mvc.dll
System.Web.Razor.dll
System.Web.WebPages.Deployment.dll
System.Web.WebPages.dll
System.Web.WebPages.Razor.dll
 you can set copy local to true but this is not available for all listed dll's or you can use some interesting future: right click on the project and select Add Deployable Dependencies with ASP.NET checkbox checked.A special folder named _bin_deployableAssemblies will be created with all necessary assemblies copied into this folder. When the project will be compiled all this assemblies will be copied into bin folder.

2. Publish the application: in a local folder and copy it to your deployment server or directly via FTP.
于 2013-02-04T08:28:37.293 に答える
0

プロパティウィンドウで参照を[ビンディレクトリにコピー]としてマークすると、DLLが/binディレクトリに確実にコピーされます。

于 2013-02-05T03:29:29.557 に答える