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

2003-03-14 Thread Henning Jensen
las De 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 tags. you can use a > HTML form by using : > " > >

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 tags. you can use a HTML form by using : " > 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 action where i'm trying to implement an abort button. I know that >

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. Any