home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 5 for Professionals
/
DELPHI5.iso
/
Runimage
/
Delphi50
/
Demos
/
Midas
/
InternetExpress
/
InetXCenter
/
inetxcentercgi.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-08-11
|
348 b
|
19 lines
{ CGI version of InternetExpress Center sample application }
program InetXCenterCGI;
{$APPTYPE CONSOLE}
uses
WebBroker,
CGIApp,
InextXCenterModule in 'InextXCenterModule.pas' {WebModule2: TWebModule};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TWebModule2, WebModule2);
Application.Run;
end.