CgiDate.dpr
资源名称:delphi.rar [点击查看]
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:
Delphi控件源码
开发平台:
Delphi
- program CgiDate;
- {$APPTYPE CONSOLE}
- uses
- SysUtils;
- begin
- writeln ('content-type: text/html');
- writeln;
- writeln ('<html><head>');
- writeln ('<title>Time at this site</title>');
- writeln ('</head><body>');
- writeln ('<h1>Time at this site</h1>');
- writeln ('<h2>');
- writeln (FormatDateTime(
- '"Today is " dddd, mmmm d, yyyy, ' +
- '"<br> and the time is" hh:mm AM/PM',
- Now));
- writeln ('</h2>');
- writeln ('<hr><i>Page generated by CgiDate.exe</i>');
- writeln ('</body></html>');
- end.