> request.getSession().putValue("name1","value1");

btw, the putValue()-method is deprecated since servlet2.2
you should use setAttribute(String key, Object value) instead.
have a look at the javadoc.

marco


Reply via email to