07-29-2020, 09:08 PM
In Delphi, as others have posted, use the OnMetaTag event in Servercontroller:
Dan
Code:
procedure TBSIServerController.IWServerControllerBaseMetaTag(
ASession: TIWApplication; const AMetaName: string; var vMetaValue: string);
begin
if AMetaName='generator' then
begin
vMetaValue := 'My New Stuff';
end;
end;Dan

