📄 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 + -