how can I send data to my external site in cgridview

I didn’t solve tihs problem.

in Cgridview…




array(

...


    'name' => 'ID'

     'type' => 'raw',

'value' => 'CHtml::link($data->ID,Yii::app()->createUrl("http.//www.mygoogle.com","sipid"=>$data->ID))'

        ),			



result: http://localhost/index.php/http.//www.mygoogle.com/sipid/23

The first parameter of CWebApp::createUrl() is a "route" of the application of your own in the format of "Controller/Action". It can not be used for an external link.

You have to specify the external URL in a single string like




'value' => 'CHtml::link($data->ID,"http.//www.mygoogle.com?sipid=".$data->ID))'



thanks…