Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing a jsp value in a parameter

Status
Not open for further replies.

axman505

Technical User
Jun 20, 2001
489
US
Code:
<jsp:plugin type="applet" code="Typewriter.class" width="370" height="420">
<jsp:params>

<jsp:param name="text" value="<%outputString%>"/>

</jsp:params>
</jsp:plugin>

Any idea why i can't pass outputString?

Thanks
 
You are missing an equal sign

Code:
<jsp:param name="text" value="<%[COLOR=red]=[/color]outputString%>"/>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top