Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 77147
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:47:05+00:00 2026-05-10T20:47:05+00:00

How do I do the above? I’ve started using MVC and I’m having issues

  • 0

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 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T20:47:05+00:00Added an answer on May 10, 2026 at 8:47 pm

    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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 122k
  • Answers 122k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I'm not sure I understand what your question is exactly,… May 12, 2026 at 12:46 am
  • Editorial Team
    Editorial Team added an answer You'll need to post your code for FindType(). My guess… May 12, 2026 at 12:46 am
  • Editorial Team
    Editorial Team added an answer Sounds like what you're looking for is the FileIOPermission (in… May 12, 2026 at 12:46 am

Related Questions

How do I do the above? I've started using MVC and I'm having issues
How do I do the above? There is mktime function but that treats the
I am trying to open a process handle in C# using the OpenProcess function
Have this method call: -> simpleJdbcTemplate.queryForInt(SQL,null); -> queryForInt() method in the springs SimpleJdbcTemplate throws
How do I assign initial values to fields inside a ModelForm? eg: class Form1(forms.Form):

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.