dumby
|
| Posted: 05/17/2002, 11:07 AM |
|
Is there a "easy"way to make the error messages a custom color such as red? I know they use the data font but not sure how to make a workaround. Can you make a custom font color for error messages without changing the datafont color? I figure some sort of javascript file that replaces color "err" is in the font name.
|
|
|
 |
Nicole
|
| Posted: 05/20/2002, 4:20 AM |
|
Hello,
- solution for CC:
create Validation event and add <font> tag to error message that is stored in s<formName>Err variable. Please refer to built in help for code example.
- in CC Studio you can also use OnValidate server side event and add error message like:
ASP
form_name.field_name.Errors.addError("<font color = red>Error text</font>")
|
|
|
 |
|