Hi All,

Not sure if I am way off mark, but it almost seems as if my JSP is not being interpreted.

Using the /manager web app, I get my app deployed (I still can't figure out why my command line install doesn't work) and I publish this page:

==
<%@ taglib uri="/WEB-INF/tld/c.tld" prefix="c" %>
<html>
<body bgcolor="white">
        <c:set var="message" value="Hi there!"/>
        <c:out value="6. ${message}"/><br/>
        <c:out value="7. ${'message'}"/><br/>
        <b>Parameter values passed to this page for each parameter: </b>
        <c:forEach var="current" items="${param}">
                <b><c:out value="${current.key}" /></b>
                <c:forEach var="aVal" items="${paramValues[current.key]}">
                        <c:out value="${aVal}" />
                </c:forEach>
        </c:forEach>
</body>
</html>
==

But the result is this:

==
6. ${message}
7. ${'message'}
Parameter values passed to this page for each parameter:
${current.key}  ${aVal}
==

Is it possible that my jsp code is not being interpreted?

A bit lost...

Rob
:)

--
Robert Mark Bram
http://phd.netcomp.monash.edu.au/RobertMarkBram/default.asp
B.Comp.(Systems Development/Business Systems)
B.Net.Comp.(Hons)
Doctor of Philosophy Student

School of Network Computing
Faculty of Information Technology
Monash University
Peninsula Campus
McMahons Rd
Frankston, VIC 3199
AUSTRALIA


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



Reply via email to