home *** CD-ROM | disk | FTP | other *** search
- rem
- rem ****************
- rem * DEMOSRCH.BAT *
- rem ****************
- rem
- rem Script to support the Form-based search in the demo
- rem
- rem Bob Denny <rdenny@netcom.com>
- rem 28-Apr-94
- rem
- rem Echo is OFF at script entry
- rem
- set of=%output_file%
- echo Content-type:text/plain > %of%
- echo. >> %of%
- if NOT %REQUEST_METHOD%==POST goto done
- echo The following coded string contains your search specifications. >> %of%
- echo In a real application, this would be decoded and given to a database >> %of%
- echo back-end, and the results formatted as hypertext for display. >> %of%
- echo. >> %of%
- echo Here are your search specs: >> %of%
- echo. >> %of%
- type %CONTENT_FILE% >> %of%
- :done
-
-
-