Help for this page

Select Code to Download


  1. or download this
    use CGI;
    my $query = new CGI;
    
    ...
      -type => 'application/vnd.ms-excel',
      -Content_Disposition => 'attachment'
    );
    
  2. or download this
    print $query->header(
      -type => 'application/octet-stream',
      -Content_Disposition => "attachment"
    );