Link to home
Start Free TrialLog in
Avatar of d_fx79
d_fx79

asked on

Error Type: (0x80020009) Exception occurred.

Argghh!! need help here..

I'm havin problem wif this code... couldn't figure out what I'm missing here...

I'd checked with the database and all but the problem seems persistant....

Hope someone could shed some light here... thanks...

-------------

Error Type:
(0x80020009)
Exception occurred.
/jdl/welcome.asp, line 54

--------------

my code:


<!--#include file="Connections/connection2.asp" -->
<!--#include file="ado/adovbs.inc"-->
.....
.....
....
....
    <%
p_username = Request.cookies("username")

dim rrs
sqlstr="select * from members where member_id = '"&username&"'"
set rrs=canvasDB.execute(sqlstr)

if request.cookies("username")="" then
response.redirect "login.asp"
else

<line 54>  Response.write "<strong><font color=black>" & rrs("first_name") & "</font></strong>"

end if
rrs.close
set rrs=nothing
%>
Avatar of d_fx79
d_fx79

ASKER


thanks Cookre.. but i managed to solve the problem.....

---------------------
 <%
p_username = Request.cookies("username") <--------

dim rrs
sqlstr="select * from members where member_id = '"&username&"'"  <-------
set rrs=canvasDB.execute(sqlstr)
----------------------

its a syntax errror... my fault... thanks anyway...
Go to Community Support at:
https://www.experts-exchange.com/Community_Support/

Post a question requesting a delete of this question:
https://www.experts-exchange.com/questions/21094694/Error-Type-0x80020009-Exception-occurred.html#11807039

and a refund of the escrowed points.
ASKER CERTIFIED SOLUTION
Avatar of Computer101
Computer101
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial