扩展
Html Helper TextBoxFor的最佳方法是什么?有没有办法重用defautl实现?
@H_502_2@
解决方法
您可以创建扩展方法(在静态类中),例如:
public static MvcHtmlString MyTextBoxFor<TModel,TProperty>(this HtmlHelper<TModel> helper,Expression<Func<TModel,TProperty>> expression) { // call original method MvcHtmlString result = InputExtensions.TextBoxFor(helper,expression); // do modification to result return result; }@H_502_2@ @H_502_2@ 原文链接:https://www.f2er.com/aspnet/247154.html