Hi, I tried to create a page which dynamically will add an id to each user
who enters the page, this id should be used by an applet. In order to do so
I used JSP to create that id, and now I am trying to insert that number as a
parameter to the applet:

<jsp:plugin type="applet" code="foo" codebase="/foo/bar" height="400"
width="300">
    <jsp:params>
        <jsp:param name="id" value="<%=jspID%>"/>
    </jsp:params>
    <jsp:fallback>
        <b>oopsss... can't load the applet!</b>
    </jsp:fallback>
</jsp:plugin>

Only that the "<%=jspID%> is not allowed by the Tomcat, it tells me that the
attribute (id) has no value.
Is there a problem with giving params values that way?

Thanks,
David.



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

Reply via email to