secondreckoned
Technical User
Hi,
I have a Multiple Select Box that displays a list of 'keywords'. I would like the user to be able to select one or more keywords from the list. Once the user hits the submit button I want to return a list of documents associated with the keywords. ie,
'from multiple select list in form
var request.form("keyword")
Set keywordRS = ("Select * From tb_Categories Where Categoryname = 'keyword1' or Categoryname = 'keyword2' or Categoryname = 'keyword3'")
The problem I'm having is the string that is returned from the request.form separates the multiple Categories with comma's ie, cat1, cat2, cat3, cat4 etc...
How would I take that string and separate it into separate words to work it into my recordset sql select statement?
appreciate any help...
I have a Multiple Select Box that displays a list of 'keywords'. I would like the user to be able to select one or more keywords from the list. Once the user hits the submit button I want to return a list of documents associated with the keywords. ie,
'from multiple select list in form
var request.form("keyword")
Set keywordRS = ("Select * From tb_Categories Where Categoryname = 'keyword1' or Categoryname = 'keyword2' or Categoryname = 'keyword3'")
The problem I'm having is the string that is returned from the request.form separates the multiple Categories with comma's ie, cat1, cat2, cat3, cat4 etc...
How would I take that string and separate it into separate words to work it into my recordset sql select statement?
appreciate any help...