This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
How do I pass parameters from a JSP to an Applet? I tried several variations of the following: <jsp :plugin type="applet" code="Trans.class" codebase="." jreversion="1.2" width="529" height="342" </jsp :plugin> <jsp :params> <jsp :param name="userId" value="10" /> </jsp :params>
[This message has been edited by Angela Poynton (edited March 06, 2001).]
Im not sure I understand your problem. You can use straight html. <applet code="Trans.class" width="529" height="342"> <param name="userId" value="10"> </applet> Unless I just dont understand.
You need to nest the <jsp :params> inside the plugin tag. Judging from the code you posted, you're not. See examples here: http://java.sun.com/products/jsp/tags/11/syntaxref1113.html#8837 To the other respondent, the reason for using the plugin tag instead of straight HTML is that the JSP container is supposed to write browser-specific HTML for you, saving you the effort of doing browser detection and generating different HTML for IE and Netscape. ------------------ Scott Stirling Author of Java Server Pages Application Development [This message has been edited by Scott Stirling (edited March 06, 2001).] [This message has been edited by Jim Yingst (edited March 06, 2001).]
Scott Stirling<BR>Author of <A HREF="http://www.amazon.com/exec/obidos/ASIN/067231939X/ref=ase_electricporkchop/107-2476442-4883722" TARGET=_blank rel="nofollow">Java Server Pages Application Development</A>
Randall Twede
Ranch Hand
Joined: Oct 21, 2000
Posts: 4095
1
posted
0
Scott, I see. I have been avoiding the problem of different applet tags for each browser by using java 1 in my applets. I still use html 3.2 mostly also.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.