如何在自定义HtmlHelper中使用Html.TextAreaFor()方法?

时间:2010-10-20 16:53:58

标签: c# asp.net asp.net-mvc html-helper

我正在构建一个ASP.NET MVC 2网站,现在,我的视图中有一些丑陋的意大利面条代码,我想将其制作成自定义的HtmlHelper。视图中的当前代码是:

            <%switch (Model.fiFieldTypeID) %>
            <%
            {
                case 1: // Text area
                    Response.Write(Html.Encode(Html.TextAreaFor(model => model.fiStrValue)));
                    Response.Write(Html.Encode(Html.ValidationMessageFor(model => model.fiStrValue)));
                    break;
                case 2: // Text box
                    Response.Write( Html.Encode(Html.TextBoxFor(model => model.fiStrValue)));
                    Response.Write( Html.Encode(Html.ValidationMessageFor(model => model.fiStrValue)));
                    break;
etc....

我试图将这段代码封装成一个整洁的小HtmlHelper。这就是我的开始:

public class FormHelpers
{
    public static MvcHtmlString GetStreamFieldEditor(this HtmlHelper html, FieldInstance field)
    {
        string output = "";
        switch (field.fiFieldTypeID)
        {
            case 1: // Text area
                output += html.TextAreaFor(field=> field.fiStrValue).ToString();
etc....

我知道我的lamda是错的...但我更关心的是TextAreaFor不可用作方法。但是,可以使用普通的TextArea。我不想使用TextArea,因为我需要保留我的模型绑定。如何在我的自定义html帮助器中使用TextAreaForTextBoxFor等?

2 个答案:

答案 0 :(得分:4)

这个怎么样:

public static class FormHelpers
{
    public static MvcHtmlString GetStreamFieldEditor(
        this HtmlHelper<YourModelType> html)
    {
        var model = html.ViewData.Model;
        if (model.fiFieldTypeID == 1)
        {
            return html.TextAreaFor(x => x.fiStrValue);
        }
        return html.TextBoxFor(x => x.fiStrValue);
    }
}

然后:

<%: Html.GetStreamFieldEditor() %>
<%: Html.ValidationMessageFor(x => x.fiStrValue) %>

答案 1 :(得分:0)

添加using System.Web.Mvc.Html
编辑:确保您引用的是System.Web.Mvc.dll v2.0或更高版本。

要修复lambda,您需要使用System.Linq.Expressions手动生成表达式树。