Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <select name="locdropdown" onchange="javascript:change()" >
  2. <%
  3. for(LocationDO locationDO : locationList){%>
  4. <option value=<%=locationDO.getLocationName().trim()%>><%=locationDO.getLocationName().trim()%></option>
  5. <%} %>
  6. </select>
  7.  
  8. BI Sholingar
  9. BI Mahindra City
  10. BI Sanand
  11. Rolltec_DTA
  12. Aztec Auto Ltd
  13. BI Gurgoan
  14.  
  15. String locclasses = req.getParameter("locdropdown");
  16. System.out.println(locclasses);
  17.  
  18. <select name="locdropdown" onchange="javascript:change()" >
  19. <%
  20. for(LocationDO locationDO : locationList)
  21. {%>
  22. <option value="<%=locationDO.getLocationName().trim()%>" >
  23. <%=locationDO.getLocationName().trim()%>
  24. </option>
  25. <%}
  26.  
  27. %>
  28. </select>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement