hi,

this is the code

var UID = objConn.execute("select UID from Tbl_users where EmailName='"+strEmailAddr+"'");
Response.write(UID);

it gives an error at the Response.write line, saying:
Response object error 'ASP 0185 : 8002000e'

Missing Default Property

A default property was not found for the object.


UID is an auto-number in my sql database, and strEmailAddr is a varchar.
I've tested the sql with query analyzer and it works fine (ie there is a UID value for the particular email address I check), but it doesn't work from my asp page.

Any ideas?