Ho cercato sul Web di trovare un buon esempio/tutorial che spiega come creare e utilizzare i miei helper HTML personalizzati per la mia applicazione Razor MVC 3 Ho trovato questo che è come segueAggiunta di un helper HTML personalizzato a MVC Project
Adding your own HtmlHelper in ASP.NET MVC 3
ho creato una classe (rifilato giù un po ') come modo
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"));
}
}
}
Fin qui tutto bene,
Dentro il mio controller Ho anche aggiunto il riferimento
using System.Web.Mvc.Html;
Ora dentro la mia vista ho il seguente
@Html.StateDropDownList(x => x.State)
Ma io ottenere il seguente errore
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?)
Qualcuno potrebbe dirmi che cosa sto sbagliando qui.
Avete un helper HTML chiamato DisplayImageFor? –
@ UfukHacıoğulları Spiacente ho aggiunto la dichiarazione di errore errata, ho aggiornato quanto sopra. –