How can I turn this search that returns a single keyword into one that accepts multiple ones (at least 2 or 3)? Tried all kind of things like 'split' but it's not working.
<%
Dim rsProviderActQuery__MMColParam
rsProviderActQuery__MMColParam = "%"
if (Request.Form("searchbox"
<> ""
then rsProviderActQuery__MMColParam = Request.Form("searchbox"
%>
<%
set rsProviderActQuery = Server.CreateObject("ADODB.Recordset"
rsProviderActQuery.ActiveConnection = MM_GW_providers_STRING
rsProviderActQuery.Source = "SELECT * FROM SupplierActivityQuery WHERE SupplierActivityDescription LIKE '%" + Replace(rsProviderActQuery__MMColParam, "'", "''"
+ "%'"
rsProviderActQuery.CursorType = 0
rsProviderActQuery.CursorLocation = 2
rsProviderActQuery.LockType = 3
rsProviderActQuery.Open()
rsProviderActQuery_numRows = 0
%>
tia
Struth
<%
Dim rsProviderActQuery__MMColParam
rsProviderActQuery__MMColParam = "%"
if (Request.Form("searchbox"



%>
<%
set rsProviderActQuery = Server.CreateObject("ADODB.Recordset"

rsProviderActQuery.ActiveConnection = MM_GW_providers_STRING
rsProviderActQuery.Source = "SELECT * FROM SupplierActivityQuery WHERE SupplierActivityDescription LIKE '%" + Replace(rsProviderActQuery__MMColParam, "'", "''"

rsProviderActQuery.CursorType = 0
rsProviderActQuery.CursorLocation = 2
rsProviderActQuery.LockType = 3
rsProviderActQuery.Open()
rsProviderActQuery_numRows = 0
%>
tia
Struth