I'm adding another function to a website, basically it will give the clients the ability to view/download their data as Excel spreadsheets.

The rest of the site is ASP, mainly used as SSI, and PerlScript. The authorization system is coupled to the Session object.
Currently I use Spreadsheet::WriteExcel to generate the data using standard perl cgi and it works great. The problem is to make both authorization and spreadsheet generation work together.

1. If I stick to std perl cgi is there any way to get to the Session object ?

2. PerlScript would put me into the problem of transmitting the binary spreadsheet, probably using $Response->BinaryWrite, right ?

The site is currently located at an ISP which probably means that using native Excel through Win32::OLE is out of the question and besides Spreadsheet::WriteExcel does not contain macros thereby eliminating the potential of sending virus-infected data to the clients.

In perl we trust ....


In reply to $Session from cgi BinaryWrite from PerlScript by guha

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.