I am running Tomcat 4.1.18 and 5.0.x.
I tried the following HTML and JSP using EL, and am not getting the correct 
response from either Tomcat version.

I have the following HTML:

<html>
<body>
<form action="TestBean.jsp">
   Name: <input type="text" name="name"><br>

   <input type="submit">
</form>
</body>
</html>



And the following JSP:

<%@ page isELIgnored ="false" %>
<html>
<body>
Request param name is: ${param.name} <br>

</body>
</html>



Regardless of what I type in the Name box in the HTML page, the response is 
always:

Request param name is: ${param.name}


What is wrong? Thanks.


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to