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 7516743
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:13:47+00:00 2026-05-30T01:13:47+00:00

I am trying to get my view to post a List back to the

  • 0

I am trying to get my view to post a List back to the action however it keeps coming in as null.

So my Model has a List of WeightEntry objects.

Exercise Model

public class Exercise
{
    public List<WeightEntry> Entries { get; set; }
    public int ExerciseID { get; set; }
    public int ExerciseName { get; set; }
}

WeightEntry Model

public class WeightEntry
{
    public int ID { get; set; }
    public int Weight { get; set; }
    public int Repetition { get; set; }
}

My View contains the ExerciseName and a forloop of WeightEntry objects

@model Mymvc.ViewModels.Exercise
...
<span>@Model.ExerciseName</span>
@using (Html.BeginForm())
{
    @Html.ValidationSummary(true)
    <table class="left weight-record">
        <tr>
            <th>Reps</th>
            <th>Weight</th>
        </tr>
        @foreach (var item in Model.Entries)
        {
            <tr>
                <td>
                    @Html.EditorFor(x => item.Repetition)
                </td>
                <td>
                    @Html.EditorFor(x => item.Weight)
                </td>
            </tr>
        }
    </table>
    <input type="submit" value="Save" /> 
}

The Controller Action (Post) Does nothing at the moment. I am just trying to get the binding working before I add the save code.

[HttpPost]
public ActionResult WeightEntry(Exercise exercise)
{
    try
    {
        //Add code here to save and check isvalid    
        return View(exercise);
    }
    catch
    {
        return View(exercise);
    }
}

I have seen a few little tricks with adding a numerator to the form elements’ names used in MVC2 but I was wondering if MVC3 was any different? I was hoping it would all bind nicely with ID’s being 0 or null but instead the whole List is null when I inspect it after the form posts. Any help is appreciated.
Thanks.

  • 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. Editorial Team
    Editorial Team
    2026-05-30T01:13:49+00:00Added an answer on May 30, 2026 at 1:13 am

    Replace the following loop:

    @foreach (var item in Model.Entries)
    {
        <tr>
            <td>
                @Html.EditorFor(x => item.Repetition)
             </td>
             <td>
                 @Html.EditorFor(x => item.Weight)
             </td>
         </tr>
    }
    

    with:

    @for (var i = 0; i < Model.Entries.Count; i++)
    {
        <tr>
            <td>
                @Html.EditorFor(x => x.Entries[i].Repetition)
             </td>
             <td>
                 @Html.EditorFor(x => x.Entries[i].Weight)
             </td>
         </tr>
    }
    

    or even better, use editor templates and replace the loop with:

    @Html.EditorFor(x => x.Entries)
    

    and then define a custom editor template that will automatically be rendered for each element of the Entries collection (~/Views/Shared/EditorTemplates/WeightEntry.cshtml):

    @model WeightEntry
    <tr>
        <td>
            @Html.EditorFor(x => x.Repetition)
         </td>
         <td>
             @Html.EditorFor(x => x.Weight)
         </td>
     </tr>
    

    The the generated input elements will have correct names and you will be able to successfully fetch them back in your POST action.

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

Sidebar

Related Questions

We are trying to get the Model-View-Presenter pattern used on (virtually) all new dev
Basically all I am trying to do is have a View post back to
I'm trying to get a Spinner View from an added Fragment to my activity
i am trying to get checkbox value ,using c# In grid view the datasource
I am trying to get the accelerometer to detect shakes in a separate view
I am just trying to get my head around simple view switching for the
I am trying to get the code found here: http://snipplr.com/view/26643/mbprogresshud-with-an-asynchronous-nsurlconnection-call/ to work in my
I'm going insane trying to get an AVCaptureSession (in a view controller) to be
I'm trying to get the hang of using notifications. In my view controller class,
I'm trying to create a view that contains a list of checkboxes that is

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.