Form with a submit button without a form-bean?

2003-03-14 Thread Henning Jensen
Hi! I have an action where i'm trying to implement an abort button. I know that i can do this with a link, but i really want to have an abort button because i already have 2 other buttons on my page. But if i make a form with only a submit button it complains because it can't find a form-bean.

Re: Form with a submit button without a form-bean?

2003-03-14 Thread Nicolas De Loof
You need a formbean only if you user html:xxx tags. you can use a HTML form by using : form action=html:rewrite page=/action.do/ input type=reset /form I you want to use struts tags, you can use a bynabean to set a formbean without having to code a javabean for it. Nico. Hi! I have an

RE: Form with a submit button without a form-bean?

2003-03-14 Thread Henning Jensen
Loof [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2003 12:24 PM To: Struts Users Mailing List Subject: Re: Form with a submit button without a form-bean? You need a formbean only if you user html:xxx tags. you can use a HTML form by using : form action=html:rewrite page=/action.do