• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how can i pass a dynamic value from a .jsp to an applet using jsp:param/ jsp:pluggin

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hai to all,
i have a problem, in passing a value which i am getting from a servlet to a .jsp.i have to pass this value(dynamic value) to a applet. i have used jsp luggin and jsp aram tags,
in jsp aram i am passing value as
<%=id%>. but it is not passing the value instead it is passing to applet as it is(i.e., <%=id%> ). how can i solve this problem.
i am using jdk1.3.1 and javawebserver2.0.
if anybody knows about this please mail me to samba_reddy@forindia.com
thank you to all
by
sambareddy
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Remember, your JSP just has to write an HTML page. Look at how a static HTML page passes data to an applet with param tags and you will be able to solve your problem.
My advice for anything complicated in JSP is: Start with a static HTML page mockup that works.
Of course, with Java Web Server 2.0 you will not be able to use all of the current JSP capabilities.
Bill
------------------
author of:
reply
    Bookmark Topic Watch Topic
  • New Topic