|
hi
I have problem with receiving parameters in aplet class by getParameters() method. I am sending them on the jps page :
..
..
<% String miejsce="temp"; %>
..
..
<jsp:plugin type="applet" code="util.jbPack.Aplet.class" codebase ="file:/C:/eclipseOban/eclipse/workspace/sklep/WEB-INF/src" jreversion="1.4" align="center" width = "200" height = "200">
<jsp:params>
<jsp:param name="koszulka" value="<%=miejsce%>"/>
</jsp:params>
<jsp:fallback>
<p>dgsd<p>
</jsp:fallback>
</jsp:plugin>
..
..
but getParameter() return not "temp" but "miejsce".
I would be really thankful if someone can help me with this
|
|
|
Use following while setting Parameters.
remove the "" from value attribute..I think this may work..
<jsp:params>
<jsp:param name="koszulka" value=<%=miejsce%>/>
</jsp:params>
|
|
|
|
|
|
|
|