Here's the thing, I need to create three dropdown lists each for day, month, year. Once these are selected, after clicking a button, the three selected values need to be concatenated and bound to a date column in a database table.
String month=request.getParameter("month");
String date=request.getParameter("date");
String year=request.getParameter("year");
how to concat these three parameters ...