I could not find the similar question yet, so I decided to ask it here.
I relatively new to MVC
and may have some incorrect wording in my question, and I'm just wondering if that is possible to do it at all?
Usually, we are dealing with ModelViewController
coupling and we return the View
from a Controller
with Models/Json
as parameters to the returning View
, so we can bind the Model
to the View
I'm just wondering if we have a ViewA, ViewB ControllerA,ControllerB and a ModelA, is that possible to have a @Url.Action/Link
or Ajax
method to send the ModelA from the ViewA to an Action Method
of a ControllerB, so, the data stored in the ModelA can be displayed in the ViewB when it is returned from the ControllerB?
I do not have any code yet and just want to know if that is possible and if so, what would be the right approach to achieve something like that?