Hi I have a website in which I am unable to click the checkout button or doCheckout.

<%
rsUsers.Close()
Set rsUsers = Nothing
%>

The error I keep getting is that the line Set rsUsers = Nothing is incorrect. As I am a newbie at this I am lost as to what can the error be related to. When I try to load the page to check out items I get this message. I can load the catalog but I cannot register or add to cart. In my simple way of thinking I thought it was a write permission to the file. But I've been going into IIS to set the permission to Pulic I have also set the permission to include write.

I can log into the account set up and view cart items but when I try to check out I get this error message

Microsoft VBScript runtime error '800a01a8'

Object required: ''

../doCheckout.asp, line 6 which is the line with Set rsUsers. I have ran out of ideas literally.

Can someone give me some ideas as to how to fixt this?

Thanking you in advance for your attention to my question.

try:

<%
Set rsUsers = Nothing
rsUsers.Close()

%>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.