Might help to see your Action class code. Do you have a method: public String getTest1() and getCallTextSubject() ?
On 5/29/07, Michał Letyński <[EMAIL PROTECTED]> wrote:
Hi. In my action class i have to different String fields(setters and getters are aplied). String test1; String test2; In my jsp page i have: <s:property value="test1"/> and <s:textfield name="callTextSubject" ..... When i submit the form with some values inside i have in my action those values which i entered. After some logic i want to clean them up by: this.test1=""; this.test2="" and then i display this page again(second action do it -> typ =chain). And what are the results ? The values which i entered are still there !