Delphi,isapi,中的TPageProducer(100分)

  • 主题发起人 主题发起人 120
  • 开始时间 开始时间
1

120

Unregistered / Unconfirmed
GUEST, unregistred user!
我想动态创建TPageProducer,OnHTMLTag事件如何写?谢谢!
 
我现在出去办事,可能要晚上回来,如果您感兴趣可以先聊着。
吐血奉献
 
TPageHTML = class (TObject)
public
constructor Create() ; overload;
destructor Destroy() ; override;
procedure PageProducerOutputHTMLTag(Sender: TObject; Tag: TTag;
const TagString: String; TagParams: TStrings;
var ReplaceText: String);
end;

constructor TPageHTML.Create;
begin
inherited Create;

end;

destructor TPageHTML.Destroy;
begin
inherited Destroy;

end;

procedure TPageHTML.PageProducerOutputHTMLTag(Sender: TObject; Tag: TTag;
const TagString: String; TagParams: TStrings; var ReplaceText: String);
begin
case Tag of
tgCustom:
begin
if TagString = 'TitleInfo' then ReplaceText:='hello' ;
if TagString = 'Status' then ReplaceText:= 'boby';
if TagString = 'Messages' then ReplaceText:= 'sess';
end;
end;
end;
 
接受答案了.
 
后退
顶部