I went through _form.php. I found below codes at the end of the php file. I guess it is used to commit the from. question is what specific controller and function would be invoked after form submitted. as I didn’t find any definition in _form.php
<div class="row buttons">
<?php echo CHtml::submitButton($model->isNewRecord ? 'Create' : 'Save'); ?>
</div>
Another question is whether we could use the traditional way to submit form through html. like
<form>
<input type=submit value = create/>
</form>
if we can. same question with first. how to define the controller and specific function to handle this form commit.could you please give a example.thx a lot