I have the following page:

<%
if (request.getParameter("Submit").equals("Modify")) {
%>
<jsp:plugin type="applet" code="TheFieldModifier.class" height="200" width="400">
<jsp:params>
<jsp:param name="AField" value="<%= request.getParameter("AField") %>" />
<jsp:param name="TheField" value="<%= request.getParameter("TheField") %>" />
</jsp:params>
<jsp:fallback>
OOPS!
</jsp:fallback>
</jsp:plugin>
<%
 } else {
%>
<jsp:forward page="further.jsp">
</jsp:forward>
<%
 }
%>

In my applet I do not get the value of the expresions but strings like 
"request.getParameter("AField")" as values of the parameters.

Where am I wrong?

Thanx in advance for any help.

==========================================================================To 
unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to