Suppose a webpage that presents a table, but with an option to download it as an Excel sheet. The option is presented as a button that submits a form (containing the required parameters to create the same report, but for Excel).
<form action="makereport.blah">
<!-- Some parameters -->
<input type="button" value="Export to Excel" onClick="submit();"/>
</form>
The final step remains to direct the browser to the created Excel sheet.
I see three possibilities:
In the "action" page of the form, with the OnLoad event: rewrite in JavaScript the URL to the created file path and reload the page
In the HTTP header: Redirect to the url of the file (with the Redirect command)
Using an
iframe, wheresrcis the target file
Those seem a bit hackish, but I've used them in the past. How is this normally done?
(As a note, the language I'm using to generate the HTML (and Excel sheet) is an in-house solution. So if PHP has something for that, I would just have to port it).

