racket/collects/web-server/default-web-root/htdocs/servlets/examples
Jay McCarthy 07474ad477 Refactoring dispatch-passwords
svn: r12242
2008-11-05 19:00:07 +00:00
..
add-ssd.ss
add-v2.ss
add.ss
adjust.ss
clear.ss
count.ss
cut.ss
dir.ss
english-measure-questions.ss
error.ss
hello.ss
quiz.ss
README
wc-fake.ss Refactoring dispatch-passwords 2008-11-05 19:00:07 +00:00
wc.ss Refactoring dispatch-passwords 2008-11-05 19:00:07 +00:00

This directory contains several examples of PLT-Scheme servlets.

hello.ss
  The hello servlet demonstrates how a minimal servlet can provide 
  functionality similar to server-side includes.

count.ss
  The count servlet shows how a servlet can maintain state between invocations.
  The state is reset when the cache of loaded servlets is refreshed.

add.ss
  The add servlet uses send/suspend to interact with the user multiple times.

quiz.ss english-measure-questions.ss
  The quiz servlet demonstrates how to implement a web-based multiple choice
  quiz. A big thank you to Don Felgar for providing this sample.