AW: Switching the locale(language)

2002-07-10 Thread Kölbl Norbert
You can set the Locale for the user's session in your action-class like this: Locale locale = Locale.GERMAN; request.getSession().setAttribute(Action.LOCALE_KEY, locale); Hope this helps, Norbert Hi everybody, I'am developping an application in three languages with STUTS 1.0.2 I'd like

AW: html:errors tag funny null strings

2002-06-21 Thread Kölbl Norbert
You have to add an errrors.header and an errors.footer entry to your properties file, wether you want to print some text before and after your errors or not. You can just leave them blank: errors.header= errors.footer= If the entries are missing, you get a 'null' printed to your page. Hope