/// <summary>
 /// called when the url doesn't match any of our known routes
 /// </summary>
 protected override void HandleUnknownAction(string actionName)
 {
     ErrorController e = new ErrorController();
     e.NotFound().ExecuteResult(ControllerContext);
 }
示例#2
0
        /// <summary>
        /// called when the url doesn't match any of our known routes
        /// </summary>
        protected override void HandleUnknownAction(string actionName)
        {
            ErrorController e = new ErrorController();

            e.NotFound().ExecuteResult(ControllerContext);
        }