<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>
public ActionResult FirstMethod()
{
...
TempData["Message"] = "My message";
return RedirectToAction("SecondMethod");
}
public ActionResult SecondMethod()
{
...
ViewBag.Message = TempData["Message"];
return View();
}