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

how to change MS Access mdw password using ASP code 2

Status
Not open for further replies.

axslearnr

Technical User
Apr 1, 2004
78
US
Hi
I have ASP page where I have a form to change the password of the user. The back end is Access database and I dont have any tables for password information. I have a workgroup information file for the users.

How to change the password of the access database using ASP form.

pls let me know
thank you.

 
Can you omit the on error resume next? I am curious if you have ADOX loaded on your machine.
 
Thank you very much for our help.

I omit the error next resume. Its still like that? what is ADOX?

Pls let me know
bye

 
Hi
I go this eror message now

Error Type:
Provider (0x800A0CB3)
Object or provider is not capable of performing requested operation.
/ChangePasswordADO.asp, line 46

line 46 : cat.Users("kumar").ChangePassword "", "ybnvdp"

pls let me know

thank you
 
is the "" by itself old password perchance? and perchance necessary?

[thumbsup2]DreX
aKa - Robert
 
Hi
" " is old password only. it didnt work. it say object not supported is it bcos of ADOX? how to see whether i have ADOX or not in my computer?

Do i have install ADOX on every computer for all users ?

pls let me know
thank you

 
I think your right. Needs to be this:

cat.Users("kumar").ChangePassword "oldpassword", "ybnvdp"

I didn't have a password on mine to start with. Sorry about that. Nice catch Drexor.
 
You should be able to open up the registry and do a search for ADOX.Catalog. If you find a key that says that then your fine. However it there you have seems to think you have ADOX installed fine. Just not giving the right information.

Let me know if the previous post worked.

Cassidy
 
Hi
I still get the same error at that line. I really appreciate u guys helping me. I am sorry I am not that good in ASP. Pls let me know

thank you


Error Type:
Provider (0x800A0CB3)
Object or provider is not capable of performing requested operation.
/ChangePasswordADO.asp, line 46
 
Hi
Thank for your help. I really appreciate it. That code worked to change the password.

Thank you


 
another satisfied customer!

[lol]
axs, it would be gracious of you to give cassidy a star for his hard work on this.

[thumbsup2]DreX
aKa - Robert
 
[lol] SCRATCH that, the star snuck in while i was typing [lol]

[thumbsup2]DreX
aKa - Robert
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top