";文件过期”;在其他操作上带有提交按钮


"document expired" with button submit on other action

我在其他操作(没有表单)上使用带有"提交"的CHtml::按钮,它显示页面,但当我单击"返回"然后单击"下一步"时,它显示Document Expired

            <?php echo CHtml::button('title', array('submit' => array('/'.$_GET['id'].'/smthing/profile'))); //)?>

尝试从POST更改为GET,例如活动表单:

 $form = $this->beginWidget('CActiveForm', array(
    'action' => '/',
    'method' => 'get',
    'enableClientValidation' => true,
    'clientOptions' => array(
        'validateOnSubmit' => true,
    ),
)); 
echo Chtml::submitButton('Submit');
$this->endWidget();