I have a search page consisting of 5 options (3 dropdowns and 2 text fields)
strState = request.form("searchState"
strLOB = request.form("searchLOB"
strDep = request.form("searchDept"
strAreaofComp = request.form("txtAreaOfCompliance"
strRequirement = request.form("txtRequirement"
i am having trouble setting up the SQL statement so a user can search by one or many of these components. The three drops downs have various values including "ALL" if nothing else is specified. The user must specify at least one parameter
Thanks for any help
strState = request.form("searchState"
strLOB = request.form("searchLOB"
strDep = request.form("searchDept"
strAreaofComp = request.form("txtAreaOfCompliance"
strRequirement = request.form("txtRequirement"
i am having trouble setting up the SQL statement so a user can search by one or many of these components. The three drops downs have various values including "ALL" if nothing else is specified. The user must specify at least one parameter
Thanks for any help