I am using MVC framework in my project and using model binding to fill a view and then retrieve the values from the view using two controllers.
I am able to fill the view with the model properties but when i am trying to retrieve the values on click of a submit button. The model returns null properties.
Here is the ViewModels:
public partial class QuestionAnswer
{
    public string QuestionText { get; set; }
    public string QuestionId { get; set; }
    public string AnswerText { get; set; }
    public string SectionName { get; set; }
    public bool IsChecked { get; set; }
}
public partial class pluralQuestionAnswer
{
    public Dictionary<int, QuestionAnswer> QnAs { get; set; }
    public Dictionary<string, int> SectionNameWithRank { get; set; }
    public Dictionary<string, int> SectionNameWithQuestionCount { get; set; }
}
Here are the controllers:
namespace Temp.Controllers
    {
        public partial class AIPController : Controller
        {
            public ActionResult FirstInitiative()
            {
                pluralQuestionAnswer ViewModel = new pluralQuestionAnswer();
                //code to fill the model ViewModel
                return View(ViewModel);
            }
            [HttpPost]
            public ActionResult SaveSelectedInitiatives(pluralQuestionAnswer ViewModel, string Save)
            {
                //some code that uses ViewModel
                //this is where ViewModel shows all properties as null
                return View();
            }
        }
    }
FirstInitiative is used to generate the view by passing a viewModel and SaveSelectedInitiatives is used to get value from the viewModel retrieved from the view.
Here is the View:
@using Models;
@model pluralQuestionAnswer
@{
    ViewBag.Title = "FirstInitiative";
    int sectionIterator;
    int sectionPracticeIterator;
    int totalPracticeIterator = 1;
}
<header></header>
<section>
    <header>
        <h1>First Initiative</h1>
    </header>
    @using (Html.BeginForm("SaveSelectedInitiatives", "AIP", FormMethod.Post))
    {
        <div class="inititive-table" style="overflow:auto">
            <div class="inititive-table-header">
                <div class="initiative-questioncolumn">
                    Common Minimum Practices
                </div>
                <div class="initiative-answercolumn">
                    Your response
                </div>
            </div>
            @for (sectionIterator = 1; sectionIterator <= Model.SectionNameWithRank.Count; sectionIterator++)
            {
                <div class="initiative-section">
                    <div class="initiative-section-name">
                        <span>@Model.SectionNameWithRank.Keys.ElementAt(sectionIterator - 1)</span>
                    </div>
                    @for (sectionPracticeIterator = 1; sectionPracticeIterator <= Model.SectionNameWithQuestionCount[Model.SectionNameWithRank.Keys.ElementAt(sectionIterator - 1)]; sectionPracticeIterator++)
                    {
                        <div class="initiative-section-question initiative-questioncolumn">
                            <label>
                                @*model binding*@
                                @Html.HiddenFor(x => x.QnAs[totalPracticeIterator].QuestionId)
                                <span style="width: 20px; float:left">@Html.CheckBoxFor(x => x.QnAs[totalPracticeIterator].IsChecked)</span>
                                <span style="display: block; margin-left: 20px">@Html.Raw(Model.QnAs[totalPracticeIterator].QuestionText)</span>
                            </label><br />
                        </div>
                        <div class="initiative-section-answers initiative-answercolumn">
                            @Model.QnAs[totalPracticeIterator].AnswerText
                        </div>
                        {totalPracticeIterator += 1;}
                    }
                </div>
            }
        </div>
        <div>
            <input type="submit" class="zs-left zs-button zs-button-action zs-atp-button" name="Save" value="Save" />
        </div>
    }
</section>
 
     
    