MVC3 custom Html helper
I want to create a custom datagrid helper using asp.net mvc3 . I want to pass an array of strings to it and I want that if i call it like this:
@Html.grid(myarray)
It re开发者_如何学编程nder as table with each row having array value. Please suggest solution to it.
Thanks
Here's the thing you are looking for:
MvcContrib's Grid
精彩评论