any suggestions...my "weatherState" value doesnt seem to be passing over:
1st jsp:
<%
Vector theStates = WeatherDAO.getWeatherStates();
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</script>
<body>
<TR bgColor="#ffffff"><TD COLSPAN="2">
<TABLE CELLPADDING="3" CELLSPACING="2">
<TR><TD>
</FONT></CENTER><BR>
<BR>
<TABLE BORDER="0" CELLSPACING="5" CELLPADDING="5" WIDTH="100%">
<TR BGCOLOR="#C0C0C0" ><TD COLSPAN="2" ALIGN="CENTER"> <FONT SIZE=+3><B> Weather Services</B></FONT>
</TD></TR>
</TABLE>
<HR SIZE="3" NOSHADE>
<font size=+1>Choose a state and press continue</font><br>
<TR><TD>
<center>
<form name="form1" method="POST" action="/JAABA/jsp/cpanel/cp-weatherFive.jsp">
<label for="weatherState">State:</label>
<select name="weatherState" >
<% for (int i=0; i< theStates.size(); i++) { %>
<OPTION VALUE><%=theStates.elementAt(i)%></OPTION>
<%
}
%>
2nd jsp:
<%
System.out.println("error...: "+request.getParameter("weatherState"));
String sValue = request.getParameter("weatherState");
Vector theCities = WeatherDAO.getWeatherCities(sValue);
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<body>
<TR bgColor="#ffffff"><TD COLSPAN="2">
<TABLE CELLPADDING="3" CELLSPACING="2">
<TR><TD>
</FONT></CENTER><BR>
<BR>
<TABLE BORDER="0" CELLSPACING="5" CELLPADDING="5" WIDTH="100%">
<TR BGCOLOR="#C0C0C0" ><TD COLSPAN="2" ALIGN="CENTER"> <FONT SIZE=+3><B> Weather Services</B></FONT>
</TD></TR>
</TABLE>
<HR SIZE="3" NOSHADE>
<font size=+1>Select the State and City for which you would like to receive weather information.</font><br>
<TR><TD>
<center>
<label for="weatherCity">City:</label>
<select name="weatherCity" >
<% for (int i=0; i< theCities.size(); i++) { %>
<OPTION VALUE=<%=theCities%>> <%=theCities.elementAt(i)%> </OPTION>
<%
}
%>