home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / delphcgi.zip / CGI.ZIP / SAMPLES / FORMLESS / NOFORM.PAS < prev    next >
Pascal/Delphi Source File  |  1995-07-27  |  224b  |  19 lines

  1. program NoForm;
  2.  
  3. uses
  4.     CGI,
  5.     CGIProcs;
  6.  
  7. begin
  8.     CGI1 := TCGI.Create(nil);
  9.     with CGI1 do
  10.         case Method of
  11.             rmGet: SendOrderForm;
  12.             rmPost: ProcessOrder;
  13.         end;
  14.        SendContent;
  15.    end;
  16.    CGI1.Free;
  17. end.
  18.  
  19.