home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo HTTP/1.0 200 OK>> %3
- echo Content-type: text/html>> %3
- echo.>> %3
- echo "<PRE>" >> %3
- echo This is a WinCGI script implemented as a .BAT file.>> %3
- echo Typically WinCGI scripts are written as Windows applications,>> %3
- echo but this at least shows the basic idea of WinCGI.>> %3
- echo.>> %3
- echo This is the WinCGI file:>> %3
- type %1 >> %3
- echo.>> %3
- echo This is the POSTed data:>> %3
- type %2 >> %3
-