What Am I doing wrong guys? This is the idea...
Index view
@Html.Partial(\"PartialView\", Model)
Well, I read the solution (Auto Refresh Partial View). I am posting it, hoping clarify the question:
index.html
@Html.Partial("PartialView", Model)
PartialController
public ActionResult PartialView()
{
// DO YOUR STUFF.
return PartialView("PartialView", model);
}
[HttpPost, ValidateInput(false)]
public EmptyResult POSTPartialView(string param1)
{
// DO YOUR STUFF AFTER SUBMIT.
return new EmptyResult();
}