Title: difference between request.setParameter and session.putValue?????

hi,

i know you can make a value persist for the request lifetime using two ways:

1. request.setParameter("name", value);

2. session.putValue("name", value);
and in the jsp say: <jsp: useBean name=......scope = "request"....>

what is the difference between the two approaches if the object is going to be around only for the lifetime of the request?? am i missing something?

thanks for your help,
rupesh.

Reply via email to