You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Franklin Phan <fr...@mindspring.com> on 2005/04/26 03:03:36 UTC

Expression Languange not working for me

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: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org