Hello! At URL you told me:
http://java.sun.com/blueprints/patterns/j2ee_patterns/page_by_page_iterator/ Sun explains well how to implement in JSP a page by page iterator. Is it possible to download all the code example in one file (eg: .zip)? In fact I have seen that every class is shown in a different page when you click on it. About the piece of code: <j2ee:productItemList numItems="3" productId='<%=request.getParameter("product_id")%>' emptyList="Unable to find requested Product" > Where "j2ee" is defined? Are the classes "ProductIntemListTag, ListChunk, ecc" Sun's implementations or are they included in JDK? Where can I find the packages such as: com.sun.j2ee.blueprints.shoppingcart.catalog.model; import com.sun.j2ee.blueprints.petstore.control.web.ProfileMgrWebImpl; import com.sun.j2ee.blueprints.personalization.profilemgr.model.ExplicitInformation ; import com.sun.j2ee.blueprints.shoppingcart.catalog.model.ListChunk; import com.sun.j2ee.blueprints.petstore.control.web.CatalogWebImpl; import com.sun.j2ee.blueprints.petstore.util.WebKeys; import com.sun.j2ee.blueprints.petstore.util.JSPUtil; ???? Where can I find other code examples of page by page iterators? Thanks a lot in advance! Luca -----Messaggio originale----- Da: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED]]Per conto di Michael Weller Inviato: gioved� 16 maggio 2002 16.09 A: [EMAIL PROTECTED] Oggetto: Re: How can I show many records to a user? hi! here you go: http://www.theserverside.com/patterns/thread.jsp?thread_id=12899 http://java.sun.com/blueprints/patterns/j2ee_patterns/page_by_page_iterator/ index.html -mw ----- Original Message ----- From: "Luca Ventura" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 16, 2002 3:50 PM Subject: How can I show many records to a user? > Hello everybody! > > I am developing a Web application that for every user: > > 1) Receives the request; > 2) Accesses to a database to get the data (records) required; > 3) Show the records found in the database to the users. > > So I used a Servlet that makes this job for me but I have the following > problem: > given that the records (and each of them can have more fields) to show could > be thousands I can't insert all of them in the same html page; so I would > like to show them like many search engines do > (like google or Altavista): that is to say using different pages and giving > the possibly to move > from a page to another. Anyway I want to be able to decide the layout to use > to show the results that > can be different from that one used from google or Altavista. > > How can I do it? Any idea? > > Thanks a lot in advance. > > Luca > > ___________________________________________________________________________ > 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 > ___________________________________________________________________________ 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 ___________________________________________________________________________ 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
