I have a Domino form that has a computed RTF that pulls text from a field using an @DbLookup. The text contains an email address enclosed in <a </a>
brackets. When the page loads, the email address appears as expected. When a user clicks a search button that runs an agent to refresh a subsequent field, it replaces the email address with the exact text including the <a </a>
.
The text (marked as Pass-Thru HTML in the field) is:
Below are the groups that you have authority to administer. Please select one. If you have other groups that you would like to administer online, please email <a href="mailto: EmailAddress@Organization.org.">EmailAddress@Organization.org</a>.
The code in the RTF to pull it is:
@DbLookup("Notes":"NoCache";@DbName;"vwContentForms";"OtherReporting";@ThisName)
When the page first loads, it displays properly.
Below are the groups that you have authority to administer. Please select one. If you have other groups that you would like to administer online, please email EMailAddress@Organization.org.
with the email address marked as a link.
After pressing a search button on the form that refreshes the page, it replaces the text email EMailAddress@Organization.org
with <a href="mailto: EMailAddress@Organization.org.">email EmailAddress@Organization.org</a>.
What am I missing or doing wrong?