this is my program..
The thing.. it is doing..
taking the parameter from the html page..
the parameters are country names..
and in the same folder..
the name corresponding to the country are there..
for egs.. kenya.html.. uganda.html..
when one country is selected from the combobox..
it should automatically redirect to the file .. corresponding to that html file..
the program here is wrong..
how can i make it correct
please reply me!!!
<html>
<head>
<title>Checking something
</title>
</head>
<%@ page language="java" session="true" %>
<body>
<%
StringBuffer tmp = new StringBuffer();
tmp.append(request.getParameter("D1"));
tmp.append(".htm");
out.println(tmp.toString());%>
<
jsp:forward page=tmp.toString() />
<br>
</body>
</html>
[ December 28, 2005: Message edited by: Bear Bibeault ]