關於Action中的setAttribute,和session的問題!!!!

java7086發表於2003-04-25
httpServletRequest.setAttribute("user",regname);
httpServletRequest.setAttribute("password",regpassword);

HttpSession session=httpServletRequest.getSession();
session.setAttribute("user",username);
session.setAttribute("password",password);

好像要從jsp頁面取得引數值,必須在action中用這兩個方法中的一個,是這樣的嗎,為什麼呢!這兩個方法有什麼作用和區別呢,什麼情況下用session,什麼時侯用setAttribute謝謝!!!

相關文章