Here is the situation. I've populated a dropdown list with a field from our Oracle database. From there the users find what they're looking for, highlight it and click Search. It runs the query and presents the results, but it should only return one result. Example: They highlight Forest Glen Addn and click Search. Instead of just returning Forest Glen Addn it returns Forest Creek and Forest Glen South as well. So instead of using the whole string it only takes the first word and queries on that. If anyone can help me to get it to use the exact string chosen it'd be greatly appreciated. Code Below:
<% do while not rs.EOF %>
<%
Response.write "<option value=" + Cstr(rs("Subdiv")) +">" + rs("Subdiv") + "</option>"
rs.MoveNext
loop
%>