| View previous topic :: View next topic |
| Author |
Message |
Bart Valued Newbie
Joined: 24 Jun 2003 Posts: 41 Location: Netherlands
|
Posted: Fri Jun 08, 2007 1:26 pm Post subject: VDSINET.DLL and <select name........multiple> |
|
|
I have a problem with parsing the next html code with VDSinet.dll
<form action="progname" method="post">
<select name="test" size="15" style="width: 200px;" multiple>
<option value="1">test 1</option>
<option value="2">test 2</option>
<option value="3">test 3</option>
</select>
<input type="submit" value="Apply">
</form>
When selecting all the options this generates the next URL:
progname?test=1&test=2&test=3
But when reading with VDSINET.DLL
%%TEST = @net(cgi,parse,test)
only the first will be read even when using this line more than once, i can only read the first selected item.
How to read the rest of the Test data? |
|
| Back to top |
|
 |
DaveR Valued Contributor


Joined: 03 Sep 2005 Posts: 413 Location: Australia
|
Posted: Sat Jun 09, 2007 2:10 am Post subject: Re: VDSINET.DLL and <select name........multiple> |
|
|
I've never used VDSinet.dll... but if something like @net(cgi) gets the whole lot you could maybe then use VDS' parse command to parse it. _________________ cheers
Dave |
|
| Back to top |
|
 |
|