Open Url In A New Windows

I have the following code in the controller action

$this->redirect(Yii::app()->baseUrl."/aaa/test.php?statusLine=$_GET[statusLine]&User_id=$user_id");

this works fine.

but I want this to be opened in a new window (target=blank)

Any help is appreciated.

You need to handle this on the client’s browser, not the server.

Assuming that you’re posting a form, you could send the original request over ajax, capture the result and open a new window pointing at the relevant URL.

What is the purpose of the new window / tab exactly?