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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

databaseconnection2 1

Status
Not open for further replies.

andreas57

Technical User
Sep 29, 2000
110
CH
in the sql command at the end (where...) i wanted to do: request.querystring('suchen') but i always get this eror:

Microsoft OLE DB Provider for ODBC Drivers-erorr '80040e14'

[Microsoft][ODBC Microsoft Access Driver] Undefined Funktion 'request.querystring' in .
expression

/Abfrage-D.asp, line 46

i translated it from german, hope its right [sig][/sig]
 
looks like you're including the string "request.querystring('suchen')" inside of your query, instead of the value of request.querystring("suchen"). It should look something like this:

sQuery = "select * from table where fieldname = '" & request.querystring("suchen") & "'"

[sig]<p>nick bulka<br><a href=mailto: > </a><br><a href= </a><br>Get your technical books at Bulka's Books<br>
[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top