Vo's vs request.getParameter from jsp to servlet

Dear DevelopersI want to send three data from input text in my jsp named from date,To date and age to controller servlet .Should i use simple request.getParameter or i have to make a bean .Thanks in advance
[241 byte] By [irfanjami] at [2007-9-30 11:59:30]
# 1
Use request.getParameter to extract the data from the HTML post. If you need to move that data around your application, i.e. from the web tie to the middle tier or persistent tier then put the data in a VO bean.
MartinS. at 2007-7-4 14:15:14 > top of Java-index,Other Topics,Patterns & OO Design...