asp.net mvc: How to handle situation when error happens during posting form from view user control? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T11:00:16Zhttp://stackoverflow.com/feeds/question/347051http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/347051/asp-net-mvc-how-to-handle-situation-when-error-happens-during-posting-form-from2asp.net mvc: How to handle situation when error happens during posting form from view user control?michal zygula2008-12-07T00:45:22Z2008-12-07T02:42:48Z
<p>I have a view user control that can post form. This control can be used on multiple views.
If user enters invalid data i add errors to ModelState - as simple as that. The problem is
that i don't know which view/actionresult to return since i don't know from where user post form. Ok, i can get urlreferer - but that does not look nice for me. Any idea?</p>
http://stackoverflow.com/questions/347051/asp-net-mvc-how-to-handle-situation-when-error-happens-during-posting-form-from/347136#3471361Answer by Todd Smith for asp.net mvc: How to handle situation when error happens during posting form from view user control?Todd Smith2008-12-07T02:36:15Z2008-12-07T02:42:48Z<p>Pass the info from your parent page to the controller.</p>
<pre><code><% RenderPartial("MyUserControl", new MyUserControlViewData()
{
// pass parent page info here for user control to redirect to such as
Controller = "Home",
Action = "Index"
// or even better
ParentPath = ((WebFormView)this.ViewContext.View).ViewPath
});
</code></pre>