hi,
    iam using hidden parameters.
something like this
method()
{
        Enumeration values = req.getParameterNames();
        int i=0;
        while(values.hasMoreElements())
        {
                sName[i] = (String)values.nextElement();
                sValue[i] = req.getParameterValues(sName[i])[0];
                i++;
        }
        for(int j=0;j<i;j++)
              pw.println("<input type=hidden name="+sName[j]+"
value="+sValue[j]+" > ");
}
---------------

___________________________________________________________________________
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