In Magento back end to properly submit a form, a value called formkey must be submitted with the form. Or else the form will never submit itself.
The formkey can be submitted with a hidden field as below –
$formKey = Mage::getSingleton('core/session')->getFormKey();
Thanks. It solve my problem.