/**
  * Forward a new action.
  * Set dispatched to false;
  * @param string $action
  * @param string $controller
  * @param type $invodeArgs 
  */
 public function _forward($action, $controller = null, $invodeArgs = array())
 {
     $this->request->action = $action;
     $this->request->controller = $controller . "Controller";
     $this->request->args = $invodeArgs;
     $this->request->setDispatched(false);
 }