ASP.NET MVC View Issue when returning ActionResult from different Action
Hello, I have two ASP.NET MVC Actions: public ActionResult GetAll() { return GetOne(1); } public ActionResult GetOne(Int32 id) { return View(id); } As you can see, GetAll is calling the action GetOne. However, when GetAll() is called (calling GetOne(id) and should be returning GetOne view) MVC throws an error saying t...