Re: Validating with hidden form fields - how to use my own formatting for error messages?

2007-03-08 Thread Pete Ruckelshaus
Thanks Ian, that helped. I found that using cferror doesn't allow me to use my normal site template, so since I'm using application.cfc, I used the onError method. This is what I did, and it allowed me to use my normal site template:

RE: Validating with hidden form fields - how to use my own formatting for error messages?

2007-03-08 Thread Ian Skinner
How do I apply my own formatting to those error messages? One method is to use the tag. You can use this tag to call any page you want to display this type of exceptions, and that page can then format the output as you desire. -- Ian Skinner Web Programmer BloodSource www.BloodSo

Validating with hidden form fields - how to use my own formatting for error messages?

2007-03-08 Thread Pete Ruckelshaus
I'm using CF's built-in form validation method that uses hidden form fields for validation (see http://livedocs.adobe.com/coldfusion/7/htmldocs/1385.htm#1154690) How do I apply my own formatting to those error messages? Thanks, Pete ~~