?? biolifeapache.dpr
字號:
//
// Add the section below to a httpd.conf Change the <DRIVE> and <PATH>
// settings to point to this directory. A full path is required. Use
// forward slashes and not back slashes.
//
// The address to request this demo from a browser is
// http://localhost/xmlbiolife
//
{########################## Apache Conf Settings ##############################
LoadModule biolife_module <DRIVE><PATH>/biolifeapache.dll
<Location /biolife>
SetHandler biolife-handler
</Location>
###############################################################################}
library biolifeapache;
uses
WebBroker,
ApacheApp,
LoginU in 'LoginU.pas' {Login: TWebPageModule} {*.html},
FormU in 'FormU.pas' {Details: TWebPageModule} {*.html},
GridU in 'GridU.pas' {Grid: TWebPageModule} {*.html},
HomeU in 'HomeU.pas' {Home: TWebAppPageModule} {*.html},
DataU in 'DataU.pas' {WebDataModule3: TWebDataModule};
{$R *.res}
exports
apache_module name 'biolife_module';
begin
ModuleName :='biolife_module';
ContentType :='biolife-handler';
Application.Initialize;
Application.Run;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -