Change text of standard "Agent Done" web error

Does anyone know of a way to change the standard default error screen on the web when an agent error occurs…it now just says, “Agent Done” but we would like it to be a little more clear to users…especially as some of them are considered “Agents” and that really confuses them. Thanks for any help.

Subject: you have to use a LotusScript or Java webquerysave agent

For LotusScript use Print statements to output the html you want.

We cover the use of agents in web apps in the following self paced course:

Howard

Subject: several options

You can supress the Agent Done message by printing your own message or redirecting user to another web page.

At the end of your LotusScript agent add:

’ To replace to another message
Print “Processing is complete”

'To redirect to another web page:
Print “[/db.nsf/view1?OpenView]”