I should, perhaps, post this in the ASP forum, but I'll give it a go here first...
My current problem: I've got a form on an Intranet page with a "SELECT" object, like:
..which can have MULTIPLE items selected. There are also about 8 other parameters derived from the Intranet page...
Why that's a problem: Well, I try to pass the parameters to a Stored Procedure for processing, which will then return a recordset for display. How the dickens do I get multiple values passed to my single-parameter-name, so I can do something like:
... where all those values were passed by the ONE SELECT OBJECT.
That's as clear as I can make it. Any suggestions will be greatly appreciated.
My current problem: I've got a form on an Intranet page with a "SELECT" object, like:
Code:
<select name="sel1" id="sel1" size="8" multiple>
<option value="value1">Value 1</option>
<option value="value2">Value 2</option>
<option value="value3">Value 3</option>
<option value="value4">Value 4</option>
<option value="value5">Value 5</option>
</select>
Why that's a problem: Well, I try to pass the parameters to a Stored Procedure for processing, which will then return a recordset for display. How the dickens do I get multiple values passed to my single-parameter-name, so I can do something like:
Code:
WHERE sValue IN ('value1', 'value2', 'value3')
That's as clear as I can make it. Any suggestions will be greatly appreciated.