[b] <?php
                $form = $this->beginWidget('CActiveForm', array(
                    'id' => 'commentsform',
                    'enableAjaxValidation' => true,
                ));
                echo CHtml::ajaxSubmitButton('Save', $this->createUrl('software/postcomment', array('id' => 100)), array(
                    'type' => 'POST',
                    //  'dataType'=>'json',
                    'success' => 'function(data){
  alert(data);
}’,
                ));
                $this->endWidget();
                ?>[/b]
i have the above code written inside a form… but when i click on the submit button the page reloads which shouldnt happen…
please help me