Hello Thanks for the support
hey
I have page where is want to search my db, this is the statement i have now
SELECT *
FROM ServiceInfo
WHERE (Keywords LIKE '%MMColParam1%' AND ActualLocation LIKE '%MMColParam2%')
ORDER BY Program ASC
MMColParam2 XXXX Request("Search_ActualLocation")
MMColParam1 XXXX Request("Search_Keyword")
I can search the two fields together but i also wanted to search either by keyword or by location. i needs to search by any field or both fields.
Any Sugggestions