可否在JSP中向applet传递多个参数?

MyJavaRoad

我知道使用jsp:plugin可以在JSP中插入applet
使用jsp:params+jsp:param可以插入一个参数,但是为什么



<jsp:plugin type="applet" code="Myapplet.class" >
<jsp:params>
<jsp:param name=
"number" value="<%= request.getParameter("number")%>" />
<jsp:param name=
"number1" value="<%= request.getParameter("number1")%>" />
</jsp:params>
</jsp:plugin>


这样我想插入两个参数就不行呢?