-1

ビューフォルダーのcshtmlで@modelを使用できますが、この別のフォルダーをログイン操作に使用したいです。

Account フォルダーに cshtml ファイルを作成しますが、@model を使用できません。次のようなエラーが発生しました。

ここに画像の説明を入力

4

1 に答える 1

0

You need to provide the class that will be used as the model for this view, ie.

@model MyApp.Web.Models.ViewModels.AccountModel

If you don't need a strongly-typed model in this view just delete @model declaration.

http://weblogs.asp.net/scottgu/archive/2010/10/19/asp-net-mvc-3-new-model-directive-support-in-razor.aspx

于 2013-06-28T08:47:29.590 に答える