Re: how to retrieve the selected value of jsp in action class

2006-01-11 Thread pc leung
my case goes like this inside SetupAssignUserSystemAction class, it associates with another form, UserSystemForm userSystemForm = (UserSystemForm)form; userSystemForm.setMethod(create); Can it be casted to UserForm userForm = (UserForm )form; to get the value of previous page

how to retrieve the selected value of jsp in action class

2006-01-10 Thread pc leung
The following is the dropdown box in jsp html:form action=setupAssignUserSystem.do method=post focus=engName html:select name=userForm property=engName html:options collection=userList property=engName/ /html:select How to get the value selected in action

Re: how to retrieve the selected value of jsp in action class

2006-01-10 Thread Rick Reumann
pc leung wrote the following on 1/10/2006 9:47 AM: The following is the dropdown box in jsp html:form action=setupAssignUserSystem.do method=post focus=engName html:select name=userForm property=engName html:options collection=userList property=engName/