Well, at a minimum, it should look something like this:

   <% String ValueA = "A--" + request.getParameter("A"); // Note added semicolon
%>
   <jsp:setProperty name="test" property="value" value="<%= ValueA %>" />

Note the jsp:setProperty tag format. The Value from the Java code above it is
extracted using the jsp expressions tag set (<%= %>). As long as you've already
done the <jsp:useBean /> tag previusly, this should do something... :)

Andrew


Branko Kaucic wrote:

> Hi all,
>
> tell me, if this goes (before I try by mself - lack of time):
>
> <% String ValueA = "A--"+request.getParameter("A") %>
> <% jsp:setProperty name="test" property="value" value=ValueA />
>
> Thanks,
>
> Branko Kaucic
>
> ===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

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

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to