Hello.
i wish to create a jsp page which will accept username and password from list and display a page showing the selected details when clicked on submit
<html>
<head><title>course information form
</title></head>
<body>
<form action="course_details.jsp"
method="post">
username:
<select name="username">
<option>nikhil</option>
<option>avdhut</option>
<option>gauri</option>
</select>
<select name="course">
<option>MCA</option>
<option>MBA</option>
<option>MCM</option>
<input type="reset" name="reset"
value="reset">
<input type="submit" name="submit"
value="submit">
</form>
</body>
</html>
saved as html
<html>
<head><title><course information></title>
</head>
<body>
course details of students
<UL>
<LI> username<%=request.getParameter("username")%>
<LI>course<%=request.getParameter("course")%>
</UL>
</body>
</html>
saved as jsp
not working