I would like to invoke a servlet from an HTML frame, along the lines of the
following:

<FRAMESET cols="30%,70%">
          <frame src="../MainServlet" METHOD=GET name="window1" />
          <frame src="../MainServlet" METHOD=GET name="window2"/>
     </FRAMESET>
</FRAMESET>

everything works fine, but i would also like to pass in servlet parameters, to
be accessed with getParameter(). For example:

     <frame src="../MainServlet" METHOD=GET name="window1" PARM=GetPrice/>
     <frame src="../MainServlet" METHOD=GET name="window2"
PARM=GetAvailableQuantity/>


if i try to getParameter("PARM"), the parm is not found.

Is there a way to pass parms in to my servlet without a form ?
thanx
[EMAIL PROTECTED]

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to