你还是认真查看delphi的demos/Webserv中的例子
特别是BioLifeProducer中的技巧,你认真查看该控件中的htmldoc property,
it inclue <#Notes> that is text,
<#Graphic> that is graph,
please check table control "BioLife" ,
请查看他的Graphic字段的OnGetText event,
Text := Format('<IMG SRC="/scripts/%s/getimage" alt="[%s]" border="0">',
[ScriptName, BiolifeCommon_Name.Text]);
在此它又调用了getimage的WEBactioitem而获得graph
Notes字段的OnGetText event,
Text := Sender.AsString;
get the text
Are you understand?