Getting Values From Web Forms
| Published on 11/7/2008 by Site Editor More articles in JSP
|
We continue to study on JSP basics with HTML coding. Now in this page we will create a basic web form and in next page we will get form results.
String strName = request.getParameter("strName");
String strLastName = request.getParameter("strLastName");
out.print("
|
no comments submitted



