"Gary D. Schechter" wrote:
>
>      <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

With the GET method, parameters are passed as part of the URL:

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

K Mukhar

___________________________________________________________________________
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