Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC: How do I pass a list (from a class in Model) to a repeater in a View?

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.

like image 757
Tablet Avatar asked Nov 24 '08 18:11

Tablet


People also ask

How do I pass model list from controller view?

You can use for this: 1 - Using View() , 2 - Using ViewData , 3 - Using ViewBag , 4 - Using your custom class , and 5 - Some combinations of those approaches.

How do you transfer data from model to view?

The other way of passing the data from Controller to View can be by passing an object of the model class to the View. Erase the code of ViewData and pass the object of model class in return view. Import the binding object of model class at the top of Index View and access the properties by @Model.

How do you pass a list to another class in C#?

In other words, how to pass Arraylist from one class to another in C#. We'll create an ArrayList in the main() method and will share it to the two different classes i.e. the Read and the Write class. The Write class will add elements to an ArrayList and another Read class will read elements from the same ArrayList.


3 Answers

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.

like image 126
Rune Avatar answered Sep 20 '22 21:09

Rune


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>
like image 31
Todd Smith Avatar answered Sep 17 '22 21:09

Todd Smith


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.

like image 26
Dave Weaver Avatar answered Sep 17 '22 21:09

Dave Weaver