In my View I am using this form method:
<form method="get" action="@Url.Action("Index")">
So "Index" is method in Controller - UserA:
public ActionResult Index(SearchParameters parameters, UserModel userModel)
My question is, how to add in this same View new form method, where I want to call action in different Controller, so I would for example call ... action="@Url.Action("Index2") ... Where Index2 is ActionResult Index2 ... in Controller - UserB.
Thanks for explanation...