⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 urpl.pas

📁 关于利用DELPHI来进行企业级方案解决的著作的附书源码
💻 PAS
字号:

unit uRPL;

interface

uses
  Windows, Messages, SysUtils, Classes, HTTPApp, WebModu, HTTPProd,
  CompProd, PagItems, SiteProd, MidItems, WebForm, WebComp;

type
  TRPL = class(TWebPageModule)
    AdapterPageProducer: TAdapterPageProducer;
    LayoutGroup1: TLayoutGroup;
    AdapterForm1: TAdapterForm;
    AdapterFieldGroup1: TAdapterFieldGroup;
    AdapterGrid1: TAdapterGrid;
    ColpubTime: TAdapterDisplayColumn;
    ColName: TAdapterDisplayColumn;
    ColContent: TAdapterDisplayColumn;
    LayoutGroup2: TLayoutGroup;
    LayoutGroup3: TLayoutGroup;
    pubTime: TAdapterDisplayField;
    Name: TAdapterDisplayField;
    Title: TAdapterDisplayField;
    about: TAdapterDisplayField;
    Content: TAdapterDisplayField;
    AdapterCommandGroup1: TAdapterCommandGroup;
    CmdNewRow: TAdapterActionButton;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

  function RPL: TRPL;

implementation

{$R *.dfm}  {*.html}

uses WebReq, WebCntxt, WebFact, Variants, wdmDB;

function RPL: TRPL;
begin
  Result := TRPL(WebContext.FindModuleClass(TRPL));
end;

initialization
  if WebRequestHandler <> nil then
    WebRequestHandler.AddWebModuleFactory(TWebPageModuleFactory.Create(TRPL, TWebPageInfo.Create([wpLoginRequired], '.html', '', '回复'), crOnDemand, caCache));

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -