Here is my
Jsp source.
<html>
<body>
<%!
String text="Welcome to Expression language";
%>
Welcome to the jsp programming.
<br/>
<strong>If you see this page, it means jsp are also funtioning properly.</strong>
Text = ${text}
</body>
</html>
When I deploy this jsp on
tomcat server. For some reason expression ${text} is not replaced with the text Instead I am just seeing ${text} as is was.
Expected output for the expression part is :
-----------------------------------
Text = Welcome to Expression language
-------------------------------------
Did I miss something here.
Thanks!!
Shiva
[ November 22, 2005: Message edited by: shiva rao ]