Hi,
Can someone help me with this situation:
I have a web application that queries data. Once the data is retrieved, I want to dump it into excel on the local PC not the server side. When I tried using something like this:
use Spreadsheet::WriteExcel;
my $r = new cgi;
# print "Content-type: application/vnd.ms-excel\n\n";
# Create a new workbook called simple.xls and add a worksheet
my $workbook = Spreadsheet::WriteExcel->new("simple.xls"
my $worksheet = $workbook->addworksheet();
this .xls is saved on the server. Can I save the file locally?
Thanks.
Can someone help me with this situation:
I have a web application that queries data. Once the data is retrieved, I want to dump it into excel on the local PC not the server side. When I tried using something like this:
use Spreadsheet::WriteExcel;
my $r = new cgi;
# print "Content-type: application/vnd.ms-excel\n\n";
# Create a new workbook called simple.xls and add a worksheet
my $workbook = Spreadsheet::WriteExcel->new("simple.xls"
my $worksheet = $workbook->addworksheet();
this .xls is saved on the server. Can I save the file locally?
Thanks.