views:

1944

answers:

4

How do I do the above? I've started using MVC and I'm having issues passing data around.

My specific problem is to do with a list of objects I have in my Model which I need to access in a View and iterate through.

Thanks in advance.

+1  A: 

Hi, If I'm not mistaken, the repeater control requires the page model. (Page model being what classic ASP.NET uses)

But you should take a look at this link: http://haacked.com/archive/2008/05/03/code-based-repeater-for-asp.net-mvc.aspx

TimothyP
+1  A: 

ASP.NET MVC has a couple ways to pass data to your View. The primary way of passing your model classes to the View is to include it in the returned ViewResult class from your controller, like below:

Function List() As ViewResult
    ' pass other information in the viewdata dictionary
    ViewData("Title") = "All Items"
    ' get our item list from the Model classes
    Dim items = Model.ItemRepository.GetAllItems()
    ' return as part of result
    Return View(items)
End Function

Then from within your view you can access that list like below:

<% For Each item In ViewData.Model %>
    <%=item.Name%>
<% End If %>

The other method of passing data is thru the ViewData dictionary as shown in the controller function above. You can access that from within your view like:

<%=ViewData("Title")%>

Hope that helps.

Dave Weaver
A: 

The quick and dirty way is to pass it via ViewData

public ActionResult List()
{
    ViewData["MyList"] = new List<string> () {"test1", "test2"};

    return View ();
}

then you can access it in your view

<ul>
<% foreach (string item in (List<string>)ViewData["MyList"]) { %>
    <li><%= item %></li>
<% }%>
</ul>
Todd Smith
+4  A: 

Let's say your controller action looks something like

public ActionResult List()
{
    List<string> myList = database.GetListOfStrings();
    (...)
}

Now you want to pass your list to the view, say "List.aspx". You do this by having the action return a ViewResult (ViewResult is a subclass of ActionResult). You can use the Controller's View method to return a ViewResult like so:

public ActionResult List()
{
    List<string> myList = database.GetListOfStrings();
    (...)
    return View("List", myList);
}

To be able to access the list in a strongly-typed fashion in your view, it must derive from ViewPage, where T is the type of the data you are passing in. Thus, in the current case our view (in List.aspx.cs) would something like this:

public partial class List : ViewPage<string>
{
    (...)
}

The data passed into the view in this way is referred to as the "ViewData". To access the data, you must go through the ViewData.Model properties on the ViewPage. Thus, to render the contents of the list you would write (in List.aspx)

<ul>
    <% foreach(var s in this.ViewData.Model){ %>
    <li> <%= s %> </li>
    <% } %>
</ul>

Here, this.ViewData.Model has the type you specified the type parameter T in ViewPage, so in our case this.ViewData.Model has type List.

You can use a repeater for rendering stuff like this, but I wouldn't recommend it. If you want to use something similar, check out the Grid module of the MvcContrib project on CodePlex.

Rune
thanks a lot, everyone was helpful but this one helped me the most
Shahin
Should ViewPage<string> be ViewPage<List<string>> ?
Patrik
Yeah Patrik it should, but I figured that!
Shahin
Ah, sorry about that. Glad you figured it out.
Rune