CgiDate.dpr
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. program CgiDate;
  2. {$APPTYPE CONSOLE}
  3. uses
  4.   SysUtils;
  5. begin
  6.   writeln ('content-type: text/html');
  7.   writeln;
  8.   writeln ('<html><head>');
  9.   writeln ('<title>Time at this site</title>');
  10.   writeln ('</head><body>');
  11.   writeln ('<h1>Time at this site</h1>');
  12.   writeln ('<h2>');
  13.   writeln (FormatDateTime(
  14.     '"Today is " dddd, mmmm d, yyyy, ' +
  15.     '"<br> and the time is" hh:mm AM/PM',
  16.      Now));
  17.   writeln ('</h2>');
  18.   writeln ('<hr><i>Page generated by CgiDate.exe</i>');
  19.   writeln ('</body></html>');
  20. end.