Not escaping HTML in checkbox Tag

2018-11-16 Thread Marc Michele
Hello list, my problem is that i have a message resource key defined like this: message.privacy=Die Datenschutzerklärung when i use it in text tag like this: all is ok an html is not escaped but when i used it in checkbox tag like this: html is escaped an my link is not working is there

Re: Multiple parameter names

2014-05-30 Thread Marc Michele
This is simple: public class MyAction extends ActionSupport { private String myParam; public String getMyParam() { return myParam; } public void setMyParam(String myParam) { this.myParam = myParam; } public void setAnotherName(String myParam) { th