I would like to explain my scenary: I have a form that is composed by 2 other partial views.
The idea is the following
The main Form show details about a Budget.
The second show a form to send messages.
The third show a form to send offer bids;
I would like that, when I do a Post in the 2nd ot 3rd form, the application return the main form. but, it is returning the form that was Posted.
It would work like I was using IFRAME... in other words, when I do a Post, it reflect only in the form that was Posted.
I am doing this form with MVC in C#.
Any tip?
I tried to use [ChildActionOnly], but I suppose that isn't what I am looking for.