<kevin>
>
> So the question then is, is it really worth it to use the forward() call
> over sendRedirect() if at most we will have 1000 to 3000 people a DAY (not
> hour, not minute) use our site? How much faster is it to use
> forward() over
> sendRedirect() as far as each client on our site sees it?
>
</kevin>
correct me if i'm wrong, but in addition to incurring a round trip to the
server, you also cannot pass your request and response objects and whatever
beans they may hold if you use sendRedirect(). in order to pass on info,
you'd either have to have it in the session or put in the url. since
forward() stays at the server, you get all your request data/beans
transported to the next page for free.
o happy day,
chris
chris wilson > web developer > andrews university > www.andrews.edu
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets