You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I've created a new Action on the CommonController in the SmartStore.Web Project. I have tried to make a call to the action, only no matter how I try I just get a Not Found error.
"System.Web.HttpException: 'Error executing child request for handler 'System.Web.Mvc.HttpHandlerUtil+ServerExecuteHttpHandlerAsyncWrapper'.'
A public action method 'Reviews' was not found on controller 'SmartStore.Web.Controllers.CommonController'."
//Controller Code
[ChildActionOnly]
public ActionResult Reviews()
{
return PartialView();
}
I have forced rebuild the solution - cleaning etc, I just can't get it to work. If I examine the DLL Output after build, the action exists. Anyone had this issue or can advise?
The text was updated successfully, but these errors were encountered:
So I've created a new Action on the CommonController in the SmartStore.Web Project. I have tried to make a call to the action, only no matter how I try I just get a Not Found error.
"System.Web.HttpException: 'Error executing child request for handler 'System.Web.Mvc.HttpHandlerUtil+ServerExecuteHttpHandlerAsyncWrapper'.'
A public action method 'Reviews' was not found on controller 'SmartStore.Web.Controllers.CommonController'."
//Controller Code
[ChildActionOnly]
public ActionResult Reviews()
{
return PartialView();
}
//Home Page Index.cshtml
Html.RenderAction("Reviews", "Common");
I have forced rebuild the solution - cleaning etc, I just can't get it to work. If I examine the DLL Output after build, the action exists. Anyone had this issue or can advise?
The text was updated successfully, but these errors were encountered: