Is there any way to display header and footer in controller method without using
$this->loadLayout();
$this->renderLayout();
these two lines in a controller method.
I have created one template file for controller method but that template data is not displaying in my controller method.
When I am printing
Zend_Debug::dump($this->getLayout()->getUpdate()->getHandles());
in controller method then it is printing an empty array.
