if you want to inject dynamic HTML
option one: (from answers above)
1. inject a "computed field" component in ViewRoot as previous post above with Java
2. set passthrough content as HTML
3. render HTML based on user input
option two:
1. put a computed field on xpages designer, set up a sessionscope variable which is an array which will be holding the values input by user, set up HTML template there, set computed field invisible
2. user input activate computed field, mix user input with HTML template from computed field, set computed field visible
option three:
1. set up an empty computed field in designer
2. use RPC service(example from Extension library) to generate html content for computed field
regards
wei