download 2 excel at the same time

Hi,

I have a grid with a RUN type button which onFinish will redirect to a new grid.
sc_redir(grid2);

In grid2, under Initial Module, I select excel so that it will let user download the excel directly.

May I check how can I let the user download 2 excels at the same time? I tried put the following under OnFinish but it does not works.
[LEFT][SIZE=13px]sc_redir(grid2);
sc_redir[/SIZE][/LEFT][LEFT]SIZE=13px;[/SIZE][/LEFT]

Afaik you can’t, at least not this way. The sc_redir actually redirects to another php file and that not a subroutine that comes back at the same spot. Instead, it gives control to the first line of the grid2 and forgets about it. Besides, the user can only download one file at a time. So if you need to download two excel files (never done that this way) you have to open two new windows that each control a download. Never done that b.t.w.