I have a dropdown list in a jsp file
<select name="PID" id="PID" style="min-width: 100px;" >
<%
for(somelist pm : List) { %>
<option value="<%=pm.getsmthing()%>" selected><%=pm.getName()%></option>
<option value="-1">Select a Property</option>
This is inside a form. I want to remember the selected item name after submission of the form.
Add your choosen value to HTTP session and retrive it anytime you need to show your form.