home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / webobjects / extensions / win-nt / WOPerl-lite-10e7.exe / Examples / WOPerl / Visitors / Main.wo / Main.wod < prev   
Encoding:
Text File  |  1996-08-09  |  543 b   |  30 lines

  1. /*
  2.  * Main.wod
  3.  *
  4.  * You may freely copy, distribute and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or implied, as to
  6.  * its fitness for any particular use.
  7.  *
  8.  * This is the declarations file for the Main page of the
  9.  * Visitors application.
  10.  *
  11.  */
  12.  
  13. FORM: WOForm {method="POST";};
  14.  
  15. NAME_FIELD:WOTextField {
  16.     value = aName;
  17. };
  18.  
  19. LAST_VISITOR:WOString {
  20.     value = WOApp.lastVisitor;
  21. };
  22.  
  23. VISITORS_NUM:WOString {
  24.     value = WOApp.visitorNum;
  25. };
  26.  
  27. SUBMIT_BUTTON:WOSubmitButton {
  28.     action = recordMe;    
  29. };
  30.