getParameter VS. getAttribute

Hello all, I always puzzeld with request.getParameter and request.getAttribute. What is the difference between them? Thank u! Merry Christmas!
[163 byte] By [sunmengbjuta] at [2007-11-26 13:01:02]
# 1

Hi,

request.getAttribute : Returns the value of the named attribute as an Object, or null if no attribute of the given name exists.

request.getParameter :Returns the value of a request parameter as a String, or null if the parameter does not exist.

Regards

Balaji S

Balaji_Subramaniama at 2007-7-7 17:02:00 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Thank you!Merry Christmas!
sunmengbjuta at 2007-7-7 17:02:00 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...