Thanks again for your response. I rewrote the Perl code to cause it to write the generated HTML code into a file on the webserver (not on the client). I then use the browser to access that file with the Open File... command, and the result works just fine.

So you wrote "Save your page and upload it to your webserver. If the static page works from there, your problem is elsewhere." I didn't actually upload the file to the webserver, I wrote the file directly onto the webserver's disk. So, doesn't this mean that my "problem is elsewhere"?

I chose a read/writeable directory on the webserver and generated a unique filename for the file:

@timedata = localtime(time); $cur_time = join('', @timedata); open (OUTPUT, ">/net/server/other/exec_$cur_time.html");

Then all my PRINT commands go into OUTPUT. I am still not achieving my goal of directing the user to that HTML page, but I am trying to test the theory of whether I am allowed to access a file on the webserver...


In reply to Re^4: Can't get Open Document popup window to appear by milliken
in thread Can't get Open Document popup window to appear by milliken

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.