From: Thomas Counsell Date: 2004-10-05T19:53:13+09:00 Subject: Re: WEBrock question Off the top of my head I think the method you need is request.query['param'].list (request.query returns a FormData object which acts like a string but has other stuff). Tom On 5 Oct 2004, at 10:49, George Moschovitis wrote: > Hello everyone, here is a small webrick question: > > when passing the following url to a webrick-servlet: > > http://www.mysite.com/index.html?param=1;param=2;param=3 > > i get: > > request.query["param"] => 1 > > and not > [1, 2, 3] > > like in cgi.rb > > any workarounds? > > George Moschovitis > >