hehe what dll ? i'm crap
Main Topics
Browse All TopicsHi,
I have a simple asp site with a mdb data base, i can read the database fine but when I try to add i get the following error
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/AddPhotosUp.asp, line 13
800401f3
This is line 13
Set Upload = Server.CreateObject("Persi
I connect to my database using
DIM objConn
Set objConn = Server.CreateObject("ADODB
objConn.ConnectionString = "Provider=Microsoft.Jet.OL
Server.MapPath ("/Data/WOW.mdb") & ";"
objConn.Open
I pull this is through an include
Please help me before i kill my self
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
i have had to change my db string backto
<%
Session.LCID=2057
Dim dataWOW, rsWOW, sqlWOW
Set dataWOW = Server.CreateObject("ADODB
Set rsWOW = Server.CreateObject("ADODB
dataWOW.Open "DBQ=C:\Inetpub\vhosts\glo
%>
Well, going back to your initial error on this line,
Set Upload = Server.CreateObject("Persi
This would indicate that either:
1. The Persits upload control has not been installed on your server, or
2. It has been installed but the DLL needs to be registered, or
3. or permissions to that DLL or folder are not right.
You'll need to install Persits ASP Upload from www.aspupload.com
Read the following URL from their support site on more info on this error :
http://support.persits.com
Thanks
Business Accounts
Answer for Membership
by: SquareHeadPosted on 2008-01-10 at 12:53:30ID: 20631093
sounds like that DLL has not been registered on your server.