Instead of:
RS.Open "Questions", Conn, 2, 2
Try:
RS.Open "SELECT * FROM Questions WHERE ID = '" & Request("ID") & "'", Conn, 2, 2
(Assuming "Questions" is a table in the MySQL DB you're connected to)
This is a much better way to query for data since you will only receive the rows that match your WHERE clause, and not the whole table. Besides, I don't believe "Find" is a valid method in the ADODB.Recordset object.