country_dm.pas
资源名称:delphi.rar [点击查看]
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:
Delphi控件源码
开发平台:
Delphi
- unit country_dm;
- interface
- uses
- Windows, Messages, SysUtils, Classes, HTTPApp, WebModu, HTTPProd;
- type
- Tdate = class(TWebPageModule)
- PageProducer: TPageProducer;
- procedure PageProducerHTMLTag(Sender: TObject; Tag: TTag;
- const TagString: String; TagParams: TStrings;
- var ReplaceText: String);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- function date: Tdate;
- implementation
- {$R *.dfm} {*.html}
- uses WebReq, WebCntxt, WebFact, Variants;
- function date: Tdate;
- begin
- Result := Tdate(WebContext.FindModuleClass(Tdate));
- end;
- procedure Tdate.PageProducerHTMLTag(Sender: TObject; Tag: TTag;
- const TagString: String; TagParams: TStrings; var ReplaceText: String);
- begin
- if TagString = 'date' then
- ReplaceText := DateToStr (Now)
- else if TagString = 'time' then
- ReplaceText := TimeToStr (Now);
- end;
- initialization
- if WebRequestHandler <> nil then
- WebRequestHandler.AddWebModuleFactory(TWebPageModuleFactory.Create(Tdate, TWebPageInfo.Create([wpPublished {, wpLoginRequired}], '.html'), crOnDemand, caCache));
- end.