Error 500 ParseException
Hi, I'm new to JSP.
Here is the JSP page that causes the error
<%
String n = request.getParameter("name");
String s = request.getParameter("surname");
if(n.equals("xxxx") && s.equals("yyyyy"))
{
%>
<jsp:forward page="myhome.jsp">
<jsp:param name="name" value="<%=n %>">
<jsp:param name="surname" value="<%=s %>">
</jsp:forward>
<%
}
else
{
%>
<jsp:forward page="otherhome.jsp">
<jsp:param name="name" value="<%=n %>">
<jsp:param name="surname" value="<%=s %>">
</jsp:forward>
<%
}
%>
The parser does not like these portion of the tag
......value="<%=s %>">
Where am I wrong?

