in reply to Re: Using Spreadsheet::WriteExcel with mod_perl and Content-Disposition?
in thread Using Spreadsheet::WriteExcel with mod_perl and Content-Disposition?
So, I still need to generate the file, and read it into $somevariable do I?# generate your Spreadsheet binary and put it in, oh # $sheet, ok?
It'll prompt the user to save the file, (named excel - because of mod_perl) When they click "ok" to save it, its called "testing.xls" like it should be.# Send the content type my $name = "testing.xls"; print "Content-disposition: attachment; filename=$name\n"; print "Content-type: application/vnd.ms-excel\n\n"; # Redirect the output to STDOUT my $workbook = Spreadsheet::WriteExcel->new("-"); my $worksheet = $workbook->addworksheet(); $worksheet->write(0, 0, "This should work."); $worksheet->write(0, 1, "In theory."); $workbook->close();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Using Spreadsheet::WriteExcel with mod_perl
by jmcnamara (Monsignor) on Mar 15, 2001 at 05:19 UTC | |
by one4k4 (Hermit) on Mar 15, 2001 at 05:22 UTC |