hi,
im trying to transfer information from one jsp page to another.
im using a radio button to select the appropiate information and a submit button to transfer the selected username to another jsp page. that username will be used to perform a query on the database.
at the moment i can only transfer a string
what i want to do is send the value of username within an object.
eg: adminOutput.getUsername();
ive tried
but no information is being transfered. the data can be extracted from the above object so the info is there.
im trying to transfer information from one jsp page to another.
im using a radio button to select the appropiate information and a submit button to transfer the selected username to another jsp page. that username will be used to perform a query on the database.
at the moment i can only transfer a string
Code:
<INPUT TYPE="radio" NAME="adminUsername" VALUE="bob">
what i want to do is send the value of username within an object.
eg: adminOutput.getUsername();
ive tried
Code:
<INPUT TYPE="radio" NAME="adminUsername" VALUE="<% adminOutput.getUsername(); %>">
but no information is being transfered. the data can be extracted from the above object so the info is there.