Hi All,
 I am a beginner for Java Servlet.

Following is some Active Server Page(ASP) code that read out all the objects
name's value of a request form.

     for each objitem in Request.Form
                if Request.Form(objitem).Count > 0 then
                        for intloop = 1 to Request.Form (objitem).Count
                                Response.Write objitem & intloop & "=" &
Request.Form (objitem)(intloop) & "<BR>"
                                If objitem="chkMcName" then

txtMcName=Request.Form(objitem)(intloop)
                                        MyFunction(txtMcName)
                                end if
                        next
                end if
        next


I would like to know what is the way for Java?
Hopefully u guys can provide me some code.

Thanks

Best Regards,
Howard

___________________________________________________________________________
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