I'm struggling myself here, to find a easy way to pass an array from the controller to the view on ASP.NET MVC framework.
so in my controller I would have something like:
public class HomeController : ApplicationController
{
public ActionResult Index()
{
…
This may be a silly question but I was writing a quick test page and realised that I didn't know how to bind an array or ArrayList of strings, for example, to an ASP.NET Repeater.
I experimented a bit.
&…