?? loginu.pas
字號(hào):
unit LoginU;
interface
uses
Windows, Messages, SysUtils, Classes, HTTPApp, WebModu, HTTPProd,
MidItems, WebForm, WebAdapt, WebComp, CompProd, PagItems, SiteProd;
type
TLogin = class(TWebPageModule)
AdapterPageProducer: TAdapterPageProducer;
LoginFormAdapter1: TLoginFormAdapter;
AdapterForm1: TAdapterForm;
AdapterFieldGroup1: TAdapterFieldGroup;
AdapterButtonGroup1: TAdapterCommandGroup;
BtnLogin: TAdapterActionButton;
AdapterErrorList1: TAdapterErrorList;
private
{ Private declarations }
public
{ Public declarations }
end;
function Login: TLogin;
implementation
{$R *.dfm} {*.html}
uses WebReq, WebCntxt, WebFact, Variants;
function Login: TLogin;
begin
Result := TLogin(WebContext.FindModuleClass(TLogin));
end;
initialization
if WebRequestHandler <> nil then
WebRequestHandler.AddWebModuleFactory(TWebPageModuleFactory.Create(TLogin, TWebPageInfo.Create([{wpPublished} {, wpLoginRequired}], '.html'), crOnDemand, caCache));
end.
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -