Hi
I am building an error handling mechanism for an application.
i want to store the error codes, error names and error messages in a creator table and send back the data requested according to the error code called for.
in some errors, for example when a variable sent has an illegal content -
Example: Document type can be: 10,11,12
user sent the value 13 for a Document type.
In addition to the hard coded message stored in the table, i want to include some dynamic value, in this case the value the user sent.
is there any way to incorporate the deluge variable in a content stored in a form?
maybe something like this:
Allowed types for the parameter Document_Type are :10,11,12. The value received was <%Document_Type%>
?
Thank you
Tal