seemz something wrong with quotes and braces:
-----
your code:
Session( "query" ) = _
"SELECT user, pw FROM mydb.dbo.users where user = UPPER'" & _
Request.form("user") & "'" and pw = UPPER'" & _
Request.form("pw") & "'"
-----
should be:
Session( "query" ) = _
"SELECT user, pw FROM mydb.dbo.users WHERE user = UPPER('" & _
Request.form("user") & "') AND pw = UPPER('" & _
Request.form("pw") & "')"
Main Topics
Browse All Topics





by: gladxmlPosted on 2003-03-07 at 19:35:53ID: 8092440
kpu8,
If you want to chnage the values to UPPER is not a VB function..