Public cache cache not found on controller

Sometimes I get A public action method 'cache' was not found on controller at runtime of the actionresult . Although there is no cache defined or used in my code. I don’t know where he got it from. this happens when binding ajax telerik mvc grid. Here is a stack trace from elmah

 HTTP Referrer /mycontroller/75/myaction Path Info /mycontroller/cache/b19858cce4adf72d090c2334d5584f06 

Stacktrace

  System.Web.HttpException (0x80004005): A public action method 'cache' was not found on controller 'myapp.Controllers.MyController'. at System.Web.Mvc.Controller.HandleUnknownAction(String actionName) at System.Web.Mvc.Controller.ExecuteCore() at System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) at System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext) at System.Web.Mvc.MvcHandler.<>c__DisplayClass6.<>c__DisplayClassb.<BeginProcessRequest>b__5() at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass1.<MakeVoidDelegate>b__0() at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass8`1.<BeginSynchronous>b__7(IAsyncResult _) at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult`1.End() at System.Web.Mvc.MvcHandler.<>c__DisplayClasse.<EndProcessRequest>b__d() at System.Web.Mvc.SecurityUtil.<GetCallInAppTrustThunk>b__0(Action f) at System.Web.Mvc.SecurityUtil.ProcessInApplicationTrust(Action action) at System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) at System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) 
+7
source share
1 answer

There is a Chrome bug that matches this description: http://code.google.com/p/chromium/issues/detail?id=132059 According to the description of the problem, this does not happen with other browsers, so it is very likely that Chrome should something- then do it. However, the error has not yet been confirmed, and there are many theories that can cause it. I would suggest that you yourself test several browsers to see if this is related to Chrome.

+5
source

All Articles