Source Code : Submitting Select Controls
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Submitting Select Controls
//File: index.html
<HTML>
<HEAD>
<TITLE>Submitting Select Controls</TITLE>
</HEAD>
<BODY>
<H1>Submitting Select Controls</H1>
<FORM ACTION="formAction.jsp" METHOD="POST">
<SELECT NAME="select1">
<OPTION>Option 1</OPTION>
<OPTION SELECTED>Option 2</OPTION>
<OPTION>Option 3</OPTION>
</SELECT>
<INPUT TYPE="submit" VALUE="Submit">
</FORM>
</BODY>
</HTML>
//File: formAction.jsp
<HTML>
<HEAD>
<TITLE>Reading Select Controls</TITLE>
</HEAD>
<BODY>
<H1>Reading Select Controls</H1>
You selected
<% out.println(request.getParameter("select1")); %>
</BODY>
</HTML>
Thank with us