I'm converting some D6 CGI App's tot D2007 and it seems that when the
OnGetValue event, from the TAdapterMemoField, is fired the Value I give
it, still contains strings like <#MyBookmark> but they never make it to
the actual HTML.
The <#....> tags are simply removed from the given value.
For example:
In a AdapterMemoFIeld (represented by a <textarea> HTML element) I want
to display bookmark-tags.
The Value I give in the OnGetValue Event is:
Value := 'This is my email template. You can use bookmarks tot display
values from the database or other source. For example <#CAR_MODEL>
display the model of the car in the email email you are sending.';
The actual HTML value in the <textarea> is this:
'This is my email template. You can use bookmarks tot display values
from the database. For example display the model of the car in the
email email you are sending.'
The tag is removed!
How/why is this happening?
Tnx.
J. van Donk