spx2 has asked for the wisdom of the Perl Monks concerning the following question:
The purpose of this script is to return the current time. To be able to follow the tutorial I've written my own in Perl like this<% response.expires=-1 response.write(time) %>
This SHOULD be the equivalent to the above ASP script however,I do not understand#!/usr/bin/perl -wT use DateTime; print "Content-type: text/html\n\n"; print DateTime->now;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: translating ajax+asp -> perl
by Joost (Canon) on Feb 11, 2008 at 20:50 UTC | |
by spx2 (Deacon) on Feb 11, 2008 at 21:14 UTC | |
by Joost (Canon) on Feb 11, 2008 at 21:23 UTC |