我有一个 html 助手以友好的方式显示文本框的电话号码。用法:
Html.PhoneNumberFor(m => m.PhoneNumber)
我希望它采用像“1111111111”这样的数字并输出“(111)111-1111”。我尝试通过从 html 帮助器扩展方法中的表达式中获取属性来更新 html 帮助器的视图数据,但这似乎不起作用。那么,有人知道如何更新表达式对象中的属性值吗?这是不起作用的代码:
public static MvcHtmlString PhoneNumberFor<TModel>(this HtmlHelper<TModel> helper, Expression<Func<TModel, string>> expression, object htmlAttributes)
{
var value = ModelMetadata.FromLambdaExpression(expression, helper.ViewData).Model as string;
if (!string.IsNullOrEmpty(value) && value.Length == 10)
{
value = string.Format("({0}){1}-{2}", value.Substring(0, 3), value.Substring(3, 3), value.Substring(6));
var fieldName = helper.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(ExpressionHelper.GetExpressionText(expression));
helper.ViewData[fieldName] = value;
}
return helper.TextBoxFor(expression, htmlAttributes);
}