PDA

View Full Version : QueryString question


rdbetz
06-04-2003, 01:58 PM
I am trying to pass a date to a database query constructed from separate month, day, year fields. Is it possible to set multiple query string parameters? I am attaching what I have so far so you can see what I am trying to do.

antun
06-04-2003, 02:07 PM
Yes, you can set multiple query string parameters:


setQueryString( {month : month, day : day, year : year} );


-Antun