Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. TorontoJim

    Download .TXT from Perl/CGI Generated HTML

    Ahhhhhh....here is the other thing. Using the CGI module: print $query->header(-type=>"application/vnd.ms-excel",-attachment=>"path/file.xls",-Content_length=>" -s path/file.xls");
  2. TorontoJim

    Download .TXT from Perl/CGI Generated HTML

    Try creating a small script that responds to the clicked link with this code: print "Content-Type: text/csv\n"; print "Content-Disposition: attachment; filename=something.csv\n\n"; You can also change the text/csv to text/plain. If that doesn't work for you, let me know, I have something else...
  3. TorontoJim

    show hide multiple divs

    For similar projects, I had to create an array with the div name to loop through it. I had to do that because there were other positioning divs that I didn't want touched by the loop. It's an idea that will build on the excellent example provided above.
  4. TorontoJim

    Perl Graph

    Here is a library that will create bar graphs, line graphs and very simple pie charts. It uses only JavaScript1.2 so should be good for most of todays browsers: http://www.geocities.com/james_melanson/JSOOP/jsgraph.html

Part and Inventory Search

Back
Top