The Artima Developer Community
Sponsored Link

Java Answers Forum
Applet generated through Servlet can't access Parameters passed

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Naveen

Posts: 1
Nickname: nvarma
Registered: Dec, 2002

Applet generated through Servlet can't access Parameters passed Posted: Dec 23, 2002 8:19 AM
Reply to this message Reply
Advertisement
I am unable to fetch values from param of Applet, the code at client is as under:-
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN'>
<HTML>
<HEAD>
<TITLE> Connect to the Chat application</TITLE>
</HEAD>
<BODY>
<applet code='Client' archive='myJar.jar, windows.jar, motif.jar, swingall.jar, swing.jar, multi.jar' width=400 height=400 codebase='../applet'>
<param name=clientName value=Laxmi>
<param name=courseId value=C1>
</applet>
</BODY>
</HTML>
in Client class I am not getting values of param name and courseId using :-
clientName = getParameter("clientName") ;
courseId = getParameter("courseId") ;

can any one Help!!!!!!!

Topic: Calculator Previous Topic   Next Topic Topic: trying to write a program that's like Minesweeper... stuck on gui

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use