mvc2取消了radiobuttonlist和checkboxlist,我想请问,如果碰到要使用这两者的情况下,是如何处理呢?
我找到一篇文章是介绍customer控件的:http://blogs.msdn.com/miah/archive/2008/11/10/checkboxlist-helper-for-mvc.aspx
除了自己动手写个,还有没有更好的解决办法?
如果是说用MVCContrib或MvcFutures的,是否可以介绍下具体操作?谢谢
在MvcFutures里有个RadioExtension类,RadioButtonList方法就在这里面,典型的签名为
public static MvcHtmlString[] RadioButtonList(this HtmlHelper htmlHelper, string name, IEnumerable<SelectListItem> selectList)
具体用法可以看源代码中的测试。
CheckBox倒是有,CheckBoxList好像还真没有。
<%=Html.CheckBox() %>
<%=Html.RadioButton() %>去For吧