heres a code i have written for submitting the value clicked from one jsp to another but it always return the null value.Please help me out with this i have to submit the project on Sunday don't have much time.reply ASAP! thanks <% int Value=1; String query="select * from euser "; ResultSet rs=mngr.executeQuery(query); String EmailId=null; while(rs.next()){ EmailId=rs.getString(3); session = request.getSession(true); session.putValue("username",EmailId); String Email_Id=(String)session.getValue("username"); %> <tr> <td> <p><input type="radio" name="R1" value="<%= Value%>" > <b> <font color="#FF9933"><%out.write(EmailId);%></a> </font></b></p> </td> </tr> <% Value=Value+1; }
%> </table> <p><a href="dummy.jsp?Value=<%=request.getParameter("R1")%>"><input type="submit" value="Submit" name="B1"></a></p> --------------------------------- Do you Yahoo!? Win a $20,000 Career Makeover at Yahoo! HotJobs