通过在mvc 3中扩展html helper来创建一个复选框ist控件?

时间:2012-11-30 19:21:56

标签: asp.net-mvc dynamic controls html-helper

我正在尝试使用扩展的html帮助器创建动态的checkboxlist控件?单选按钮列表将由项目列表填充?不确定如何使任何列表项更灵活。

public static string CheckBoxList(this HtmlHelper helper, string name, <Some List> items)
        {
            var output = new StringBuilder();
            output.Append(@"<div class=""checkboxList"">");

            foreach (var item in items)
            {
                output.Append(@"<input type=""checkbox"" name=""");
                output.Append(name);
                output.Append("\" value=\"");
                output.Append(item.Value);
                output.Append("\"");

                output.Append(" />");
                output.Append(item.Value);
                output.Append("<br />");
            }

            output.Append("</div>");

            return output.ToString();
        }

1 个答案:

答案 0 :(得分:0)

如何将value属性名称作为参数传递,然后使用反射获取该属性?

var itemValue = item.GetType( ).GetProperty( propName ).GetValue( item, null );

所以你的方法签名是这样的:

public static string CheckBoxList(this HtmlHelper helper, string name, List<object> items, string propName)