home *** CD-ROM | disk | FTP | other *** search
- {
- After all the required steps for a normal CGI are done,
- compile, set a breakpoint, press F9, open the browser and try this URL:
- http://localhost/path_to_CGI/project1.cgi?continent=South+America
- Of course, you need to write the real path and please check for
- steps 3 and 4 in the small documentation.
- }
- program Project1;
-
- {$APPTYPE CONSOLE}
-
- uses
- WebBroker,
- //CGIApp,
- dbgCGIApp,
- Unit1 in 'Unit1.pas' {WebModule1: TWebModule};
-
- {$E cgi}
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TWebModule1, WebModule1);
- Application.Run;
- end.
-