我创建了一个简单的方法来扩展HtmlHelper ..基本上是它的TextBoxFor方法,但是可以更好地适应我的目的进行定制。.无论如何..我认为HtmlHelper使用新的{@attributename =“ attributevalue”}创建html-element属性真的很整洁..所以我的问题是..我将如何做同样的事情?
ViewCode:
@Html.DaisyTextBoxFor(model => model.Text, new { @class="asd" })
HelperCode:
public static MvcHtmlString DaisyTextBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IDictionary<string,object> attributes = null)
{
var value = ((PropertyViewModelProperty)htmlHelper.ViewData.Model.GetType().GetProperty(ExpressionHelper.GetExpressionText(expression)).GetValue(htmlHelper.ViewData.Model, null)).Value;
return MvcHtmlString.Create(String.Format("<input name=\"{0}\" value=\"{1}\" />", CreateForInputName(typeof(TModel), htmlHelper), value));
}
private static string CreateForInputName(Type model,HtmlHelper htmlHelper)
{
return HttpContext.Current.Server.HtmlEncode(model.AssemblyQualifiedName + "_" + htmlHelper.ViewData["propertyName"].ToString() + '_' + htmlHelper.ViewData["propertyGuid"].ToString());
}
最佳答案
我从来没有尝试过,但是下面的东西行不通吗?
public static MvcHtmlString DaisyTextBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IDictionary<string,object> attributes = null)
{
var value = ((PropertyViewModelProperty)htmlHelper.ViewData.Model.GetType().GetProperty(ExpressionHelper.GetExpressionText(expression)).GetValue(htmlHelper.ViewData.Model, null)).Value;
return MvcHtmlString.Create(String.Format("<input name=\"{0}\" value=\"{1}\" class=\"{2}\" />", CreateForInputName(typeof(TModel), htmlHelper), value, attributes["class"]));
}
注意
class={2}
部分中的MvcHtmlString.Create
部分。关于c# - html元素属性,自定义HtmlHelper.xxxxFor,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13536581/