dear experts,
i'm having an error, what is this, what can i do, pls help me...
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/log/forgot.asp, line 50
800401f3
--here my code--
<%mmm = request("mode"
if mmm = "forgot" then
%>
<form action="forgot.asp?mode=send" method=post>
<div align="center">
<center>
Please enter your email below and we will have your password mailed to you!</center>
</div>
<div align="center">
<center>
<p>
<font face="Verdana" size="2">Your Email :</font>
<font face="Verdana" size="2"> <input type="text" name="email" size=30></font>
<input type=submit value="Submit"> </p>
</center>
</div>
</form>
<%end if%>
<%if mmm = "send" then
email = Request.Form("email"
ConnString = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("member.mdb"
set my_conn= Server.CreateObject("ADODB.Connection"
my_Conn.Open ConnString
set rs = my_conn.Execute ("select email,name,password from member where email='" & email & "'"
if rs.eof then
Response.Write "Invalid Email address"
else
name = rs("name"
password = rs("password"
email = trim(rs("email"
)
subject = "Password reminder form - cscro8.tripod.com.com!"
Bodytext = "This is your username and password!" & vbCrLf
Bodytext = Bodytext & "Username :" & email & vbCrLf
Bodytext = Bodytext & "Password :" & password & vbCrLf & vbCrlf
Footertext = "Thank you for supporting us!" & vbCrlf
Footertext = Footertext & "
message = Bodytext & Footertext
Set Mailer = Server.CreateObject("SMTPsvg.Mailer"
Mailer.FromName = "cscro8.tripod.com.com"
Mailer.FromAddress = "webmaster@cscro8.zzn.com"
Mailer.RemoteHost = "syntacs.mozcom.com; mail.yahoo.com"
Mailer.Subject = subject
Mailer.BodyText = message
Mailer.AddRecipient name , email
Mailer.SendMail
set Mailer = nothing
Response.Write "Password has been send to your email address : " & email
end if
rs.close
my_conn.close
set my_conn = nothing
end if
i'm having an error, what is this, what can i do, pls help me...
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/log/forgot.asp, line 50
800401f3
--here my code--
<%mmm = request("mode"
if mmm = "forgot" then
%>
<form action="forgot.asp?mode=send" method=post>
<div align="center">
<center>
Please enter your email below and we will have your password mailed to you!</center>
</div>
<div align="center">
<center>
<p>
<font face="Verdana" size="2">Your Email :</font>
<font face="Verdana" size="2"> <input type="text" name="email" size=30></font>
<input type=submit value="Submit"> </p>
</center>
</div>
</form>
<%end if%>
<%if mmm = "send" then
email = Request.Form("email"
ConnString = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("member.mdb"
set my_conn= Server.CreateObject("ADODB.Connection"
my_Conn.Open ConnString
set rs = my_conn.Execute ("select email,name,password from member where email='" & email & "'"
if rs.eof then
Response.Write "Invalid Email address"
else
name = rs("name"
password = rs("password"
email = trim(rs("email"
subject = "Password reminder form - cscro8.tripod.com.com!"
Bodytext = "This is your username and password!" & vbCrLf
Bodytext = Bodytext & "Username :" & email & vbCrLf
Bodytext = Bodytext & "Password :" & password & vbCrLf & vbCrlf
Footertext = "Thank you for supporting us!" & vbCrlf
Footertext = Footertext & "
message = Bodytext & Footertext
Set Mailer = Server.CreateObject("SMTPsvg.Mailer"
Mailer.FromName = "cscro8.tripod.com.com"
Mailer.FromAddress = "webmaster@cscro8.zzn.com"
Mailer.RemoteHost = "syntacs.mozcom.com; mail.yahoo.com"
Mailer.Subject = subject
Mailer.BodyText = message
Mailer.AddRecipient name , email
Mailer.SendMail
set Mailer = nothing
Response.Write "Password has been send to your email address : " & email
end if
rs.close
my_conn.close
set my_conn = nothing
end if