<div>
<input name="[0]obj.Id" type="text" /> <br />
<input name="[0]obj.password" type="text" /> <br />
<input name="[0]obj.tired" type="text"/><br />
</div>
<div>
<input name="[1]obj.Id" type="text" /> <br />
<input name="[1]obj.password" type="text" /> <br />
<input name="[1]obj.tired" type="text" /><br />
</div>
...
<div id="modalView"></div>
...
<script type="text/javascript">
$('#add-color').ready(function () {
$(this).addClass('md-show');
});
</script>
<div class="md-modal colored-header custom-width md-effect-9" id="add-color">
<div class="md-content">
...
</div>
</div>
public ActionResult FirstMethod()
{
...
TempData["Message"] = "My message";
return RedirectToAction("SecondMethod");
}
public ActionResult SecondMethod()
{
...
ViewBag.Message = TempData["Message"];
return View();
}