> I have a following listbox in one of my jsps: > <html:select property="system" size="5"> > <html:options collection="systems" property="name" labelProperty="name"/> > </html:select> > Following this I have two html:links one to edit a system and another one to > delete. I would like to pass the selected value from the list as part of the > link, for example: > <a href="editSystem.act?system=...... > Does anybody know how to do this, how do I actually access the selected > value of the list?
You can't really get at the value of the selection on the client side without using JavaScript. Is that an option? Why do those links have to be links? Why not make them radio buttons (edit/delete) and then submit the whole form including the choice from the select list and the choice of edit/delete? Have you looked at LookupDispatchAction? I have one action that handles create/update/delete of a record in a database. -- Wendy Smoak Applications Systems Analyst, Sr. Arizona State University PA Information Resources Management

