Hi,
I have the following snippet of code in the Validator which basically is used to show an error message. In the error message I would like to show a link by sending it as a parameter in the error message.
if (user != null && formData.getUserId()== null) {
errors.rejectValue("email", "email.already.exists",new Object[]{"Link "},null);
return;
}
I am unable to get the desired error message on the JSP page . The error is rendered like a string and is not converted to HTML code. Please help.
Thank you Manu