thanks for your reply, i was finding it hard to explain sorry!
i have been working on this all day,
ive got a question that is entered into a text box, eg. where is london bridge.
and ive realised that using instr i can find out where london bridge is in the sentence, if i have:
question = "where is london bridge"
Response.Write InStr(question,"london bridge")
but as you can see i have to know what the sight is to construct the statement, i want to have something like:
question = "where is london bridge"
Response.Write InStr(question,rs("sights"))
where the question is compared against a list of sights in a database. but i dont know what the correct syntax is or if there is a better way of doing it.