My webapp is ready but I just wanted to add a little dropdown menu with the username as title. This is my jsp code:
In your servlet:
1) get your parameter: String param = request.getParameter("param"); 2) send it to the request object as an attribute: request.setAttribute("param", param);
In your JSP:
use JSTL, and EL to return the attribute you sent from your servlet: " />
and there you go.