;;; A simple program that displays an HTML page that consists of all ;;; the CS courses in our database. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Libraries and other helpers. (require-library "cgi.ss" "net") (load "courseweb.ss") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Main Body ; Every Web page must begin with the following line followed by a ; blank line. (display "Content-type: text/html") (newline) (newline) ; Here's the actual content (see courseweb.ss for details) (display (cspage))