I'm using the cold fusion error handling for a form submit to make sure the user has entered values in a couple of the necessary fields, and it's working well, but I'd like to change the format of the template that coldfusion sends the user to when an error occurs. I've heard that it will be a server-wide change,not application specific, which is fine, but where is it and how do I set it up to get a prettier template there. for example... <select name="ship_method_id"> <option value="">--Select a Mailing-- <cfoutput query="GetShipMethod"> <option value="#ship_method_id#">#name#(#DollarFormat(amt)#) </option> </cfoutput> </select> <input type="hidden" name="ship_method_id_required" value="You didn't select a shipping method."> If the user tries to submit this form without selecting a shipping method, coldfusion will output my message to them on an error page and it's that error page that I'd like to make prettier if there's any way. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

