How access one controller data in another controller.
I'm using ASP.NET MVC 4. I am trying to access one controller properties in another controller. I'm not getting this. I'm not sure if this is possible?
Here are my formcontroller properties:
public string CorticonServiceEndpoint { get; set; }
public string CorticonServiceName { get; set; }
public string CorticonServiceMajorVersion { get; set; }
public string CorticonServiceMinorVersion { get; set; }
And my form controller doesn’t have Action instead it has ajax submit.
[StandaloneResponseFilter]
[HttpPost]
public JsonResult AjaxSubmit(FormCollection collection)
{
SubmitStatus submitedSuccessfully = this.Model.TrySubmitForm(collection, this.Request.Files, this.Request.UserHostAddress);
if (submitedSuccessfully != SubmitStatus.Success && this.Model.RaiseBeforeFormActionEvent())
return this.Json((object)new
{
success = false,
error = this.Model.GetSubmitMessage(submitedSuccessfully)
});
return this.Json((object)new
{
success = true,
error = string.Empty
});
}
Here is one more controller (ResponseController)and from this controller I want to read form controller properties.
[HttpPost]
public ActionResult Index(FormCollection formCollection)
{
var viewModel = this.Model.GetViewModel(payLoad);
return View(CorticonResponseModel.viewName, viewModel);
}
On form submit,ActionResult with HttpPost attribute will be triggered and then I need form controller properties for further processing.
I know using TempData,session and etc.. we can pass controller data from one action to another action in two controllers. Is it possible to access FormController properties in Response controller?
For better understanding I have shared a video at below URL
https://drive.google.com/open?id=0B1Z7d8OTSWR4NDFadXVueUt2MFE