Redirection Problem After Action Update

my page is not getting redirected after action update here is my redirection code




$this->render('update',array(

                                'model'=>$model,'model_studentSemester'=>$model_studentSemester,//'model_feesTransaction'=>$model_feesTransaction

                        ));



Hi,

Add this after you have updated the data to table i.e.,

$model->save();

$this->redirect(array(‘url name’));

For more information on redirect check the below link

http://www.yiiframework.com/doc/api/1.1/CController#redirect-detail