Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_jsp thread: is there a request.form.count properties in JSP?


Message #1 by "James Yuk" <jamesyuk@h...> on Mon, 20 Nov 2000 16:12:11 -0000
you can use "Enumeration":

Enumeration requestItems = request.gerParameterNames();
and then:

while(requestItems.hasMoreElements()){
         String prmName = (String)requestItems.nextElement();
         String prmValue = request.getParameterValues(prmName);
         //etc...
};



At 11:12 AM 11/20/00, you wrote:
>there is this request.form.count properties in ASP...
>just wondering whether there will be something the same or similiar
>properties in JSP... pls help.. thks!
>
>:-)
>
>---
>NEED TECHNICAL TIPS, TOOLS, AND INSIGHTS?  Is FREE okay?
>Visit EarthWeb for the latest in IT Management, Software Development,
>Web Development, Networking & Communications, and Hardware & Systems.
>Click on http://www.earthweb.com for FREE articles, tutorials,
>and discussions from the experts.


Robert Chartier
Author, AspFree.com
xxx-xxx-xxxx
rchartierh@a...
http://www.aspfree.com/devlinks
http://www.aspfree.com/authors/robert
http://www.aspalliance.com/nothingmn


  Return to Index