Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Proper syntax for find method in Asp ???

Status
Not open for further replies.

1712

Technical User
Nov 8, 2000
66
NL
Does anybody know the right syntax for the find method of ado recordset and sql 2000.

mine is
rs.find "emailaddress = " & request.form("select1")

note: the request.form("select1") is the option value from a listbox.

 

1712,

strSQL = "SELECT * FROM yourtable WHERE columname = '" & emailaddress & "'"

fengshui1998
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top