I am using the following code to retrieve data in a HTTP request
<%
Enumeration names;
names = request.getParameterNames();
if ((names != null) && (names.hasMoreElements())) {
while (names.hasMoreElements()) {
String name = (String) names.nextElement(); //get the value of the next element, cast it to a string
if(name.equals("orgConsTitle")){
String values[] = request.getParameterValues(name);
for (int i = 0; i < values.length; i++){String title = XMLencode(values[i]);}
}
How do I retreive the value of the String title to display in the page?
Thanks