dynamic text can be added to a web page by inserting following tags at the
required place.
<SPAN id="your-tag-id"></SPAN>
In the Presentation Class you could use the following method to set the text
$page->setTextYour-Tag-Id("what-ever-text");
links and link text can be dyanmically modified by using the following method;
$page->setLinkAndLinkText("Your-Tag-Id", Link_Address,
Link_Text);
dynamic images can be set as follows;
$page->setImageSource("Your-Tag-Id",Image_Source_Address,
Alternate_Text);
Any attribute of any html tag (which has an id) can be changed as follows;
$page-> setAttribute("Your-Tag-Id", Attribute_Name, Attribute_Value);
or to set several attributes;
$page->setAttributes("Your-Tag-Id", Associated_Array_of_Attribute_Name_Value_pairs);
(this document is yet to be completed...)