MVC 3 Razor アプリケーション用に独自のカスタム HTML ヘルパーを作成して使用する方法を詳しく説明している良い例/チュートリアルを見つけようとして Web を閲覧してきました。次のようなものを見つけました。
ASP.NET MVC 3 に独自の HtmlHelper を追加する
クラスを作成しました(少しトリミングしました)
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Linq.Expressions;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Html;
namespace MyWebApp
{
public static class ExtensionMethods
{
public static MvcHtmlString StateDropDownListFor<TModel, TValue>
(this HtmlHelper<TModel> html,
Expression<Func<TModel, TValue>> expression)
{
Dictionary<string, string> stateList = new Dictionary<string, string>()
{
{"AL"," Alabama"},
{"AK"," Alaska"},
{"AZ"," Arizona"},
{"AR"," Arkansas"}
};
return html.DropDownListFor(expression,
new SelectList(stateList, "key", "value"));
}
}
}
ここまでは順調ですね、
コントローラー内に参照も追加しました
using System.Web.Mvc.Html;
今私のビューの中に私は次のものを持っています
@Html.StateDropDownList(x => x.State)
しかし、次のエラーが表示されます
System.web.mvc.htmlhelper<system.collections.generic.list<Profile.ProfileImages>> does not contain a definition for StateDropDownList and no extension method StateDropDownList acception a first argument of type system.web.mvc.htmlhelper<System.Collections.Generic.List<Profile.ProfileImages>> could be found(Are you missing a using directive of an assembly reference?)
誰かが私がここで間違っていることを教えてください。