I am working with ASP and MVC5. I am trying to call view of one controller from another controller. I am trying to use method as mentioned in following link
return View("../ReasonTree/Add");
But it throws a systemnull reference
exception.
I tried this method also:
return RedirectToAction("Add","ReasonTree");
There again it throws a System.ArgumentException
I have to work on already written code and makes changes in that code.