Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: SOS. HELP!!!!


Message #1 by nusrat sarwar <nusratsarwar@y...> on Wed, 24 Apr 2002 12:27:02 -0700 (PDT)
Hi all
please do let me know why I am getting this error

Microsoft VBScript runtime error '800a01ad' 

ActiveX component can't create object: 'CreateObject' 

/fam1117/cgi-bin/order.asp, line 17 

what should I do?
its very urgent

form inputs are to be emailed the code is here 

<%
from = request ("email")
cnm = request ("address")
nm=request ("name")
phone = request ("phone")
card = request ("cardNumber")
cnt= request ("country")
fax = request ("fax")
email = request ("email")
holder = request ("holder")
fp = request ("fp")
year2= request ("ExpYear")
month2=request ("ExpMonth")



'Set Mail = CreateObject("CDONTS.NewMail")

Mail.From = from
Mail.To ="nusratsarwar@y..."
Mail.CC ="khan@s..."
Mail.Subject = "Order Information"
BodyToSend = nm & " " &" has sent this mail  " &" " &
vbCRLF &" " & vbCRLF& "Product required : "& fp & " "
& _
vbCRLF & "Country : " &cnt & " " & vbCRLF & "Phone :"
& phone &" " & vbCRLF& "Fax : " & fax &" " & vbCRLF &_
"Credit Card :"&card & " " & vbCRLF & "Exp Month is 
:" &month2 & " " & vbCRLF  &_
 "Exp Year is : " &year2 & " " & vbCRLF & "Card Holder
Name is :" &holder & " " & vbCRLF
Mail.Body = BodyToSend


ON Error Resume Next
Mail.Send
If Err <> 0 then
   Response.Write "Error Descriuption"
&Err.Description
   else
    Response.Redirect "order.htm"
End If
%>

many tahx
regards
nusrat

__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/
Message #2 by "Joe Coppola" <joco@e...> on Wed, 24 Apr 2002 15:29:29 -0400
Here is the line I use when calling a CDONTS

Set objNewMail = Server.CreateObject("CDONTS.NewMail")


I think you need SERVER.

Joe
-----Original Message-----
From: nusrat sarwar [mailto:nusratsarwar@y...] 
Sent: Wednesday, April 24, 2002 2:27 PM
To: ASP Web HowTo
Subject: [asp_web_howto] SOS. HELP!!!!


Hi all
please do let me know why I am getting this error

Microsoft VBScript runtime error '800a01ad' 

ActiveX component can't create object: 'CreateObject' 

/fam1117/cgi-bin/order.asp, line 17 

what should I do?
its very urgent

form inputs are to be emailed the code is here 

<%
from = request ("email")
cnm = request ("address")
nm=request ("name")
phone = request ("phone")
card = request ("cardNumber")
cnt= request ("country")
fax = request ("fax")
email = request ("email")
holder = request ("holder")
fp = request ("fp")
year2= request ("ExpYear")
month2=request ("ExpMonth")



'Set Mail = CreateObject("CDONTS.NewMail")

Mail.From = from
Mail.To ="nusratsarwar@y..."
Mail.CC ="khan@s..."
Mail.Subject = "Order Information"
BodyToSend = nm & " " &" has sent this mail  " &" " &
vbCRLF &" " & vbCRLF& "Product required : "& fp & " "
& _
vbCRLF & "Country : " &cnt & " " & vbCRLF & "Phone :"
& phone &" " & vbCRLF& "Fax : " & fax &" " & vbCRLF &_
"Credit Card :"&card & " " & vbCRLF & "Exp Month is 
:" &month2 & " " & vbCRLF  &_
 "Exp Year is : " &year2 & " " & vbCRLF & "Card Holder
Name is :" &holder & " " & vbCRLF
Mail.Body = BodyToSend


ON Error Resume Next
Mail.Send
If Err <> 0 then
   Response.Write "Error Descriuption"
&Err.Description
   else
    Response.Redirect "order.htm"
End If
%>

many tahx
regards
nusrat

__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/


---

Improve your web design skills with these new books from Glasshaus.

Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20

Message #3 by Jack_Speranza <jsperanza@g...> on Wed, 24 Apr 2002 15:33:25 -0400
You've no doubt checked this, but is your CDONTS component registered on
your web server?  This error message signifies either your web server can't
locate the dll in the windows registry or the security context under which
it is being invoked doesn't have the necessary privileges to execute it...

-----Original Message-----
From: nusrat sarwar [mailto:nusratsarwar@y...]
Sent: Wednesday, April 24, 2002 3:27 PM
To: ASP Web HowTo
Subject: [asp_web_howto] SOS. HELP!!!!


Hi all
please do let me know why I am getting this error

Microsoft VBScript runtime error '800a01ad' 

ActiveX component can't create object: 'CreateObject' 

/fam1117/cgi-bin/order.asp, line 17 

what should I do?
its very urgent

form inputs are to be emailed the code is here 

<%
from = request ("email")
cnm = request ("address")
nm=request ("name")
phone = request ("phone")
card = request ("cardNumber")
cnt= request ("country")
fax = request ("fax")
email = request ("email")
holder = request ("holder")
fp = request ("fp")
year2= request ("ExpYear")
month2=request ("ExpMonth")



'Set Mail = CreateObject("CDONTS.NewMail")

Mail.From = from
Mail.To ="nusratsarwar@y..."
Mail.CC ="khan@s..."
Mail.Subject = "Order Information"
BodyToSend = nm & " " &" has sent this mail  " &" " &
vbCRLF &" " & vbCRLF& "Product required : "& fp & " "
& _
vbCRLF & "Country : " &cnt & " " & vbCRLF & "Phone :"
& phone &" " & vbCRLF& "Fax : " & fax &" " & vbCRLF &_
"Credit Card :"&card & " " & vbCRLF & "Exp Month is 
:" &month2 & " " & vbCRLF  &_
 "Exp Year is : " &year2 & " " & vbCRLF & "Card Holder
Name is :" &holder & " " & vbCRLF
Mail.Body = BodyToSend


ON Error Resume Next
Mail.Send
If Err <> 0 then
   Response.Write "Error Descriuption"
&Err.Description
   else
    Response.Redirect "order.htm"
End If
%>

many tahx
regards
nusrat

__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/


---

Improve your web design skills with these new books from Glasshaus.

Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #4 by "Johnson, Israel" <IJohnson@R...> on Wed, 24 Apr 2002 15:35:20 -0400
The object has to be created by the server.... 
Try using: Server.CreateObject("Object.ClassName")....

HTH
-----Original Message-----
From: nusrat sarwar [mailto:nusratsarwar@y...]
Sent: Wednesday, April 24, 2002 3:27 PM
To: ASP Web HowTo
Subject: [asp_web_howto] SOS. HELP!!!!


Hi all
please do let me know why I am getting this error

Microsoft VBScript runtime error '800a01ad' 

ActiveX component can't create object: 'CreateObject' 

/fam1117/cgi-bin/order.asp, line 17 

what should I do?
its very urgent

form inputs are to be emailed the code is here 

<%
from = request ("email")
cnm = request ("address")
nm=request ("name")
phone = request ("phone")
card = request ("cardNumber")
cnt= request ("country")
fax = request ("fax")
email = request ("email")
holder = request ("holder")
fp = request ("fp")
year2= request ("ExpYear")
month2=request ("ExpMonth")



'Set Mail = CreateObject("CDONTS.NewMail")

Mail.From = from
Mail.To ="nusratsarwar@y..."
Mail.CC ="khan@s..."
Mail.Subject = "Order Information"
BodyToSend = nm & " " &" has sent this mail  " &" " &
vbCRLF &" " & vbCRLF& "Product required : "& fp & " "
& _
vbCRLF & "Country : " &cnt & " " & vbCRLF & "Phone :"
& phone &" " & vbCRLF& "Fax : " & fax &" " & vbCRLF &_
"Credit Card :"&card & " " & vbCRLF & "Exp Month is 
:" &month2 & " " & vbCRLF  &_
 "Exp Year is : " &year2 & " " & vbCRLF & "Card Holder
Name is :" &holder & " " & vbCRLF
Mail.Body = BodyToSend


ON Error Resume Next
Mail.Send
If Err <> 0 then
   Response.Write "Error Descriuption"
&Err.Description
   else
    Response.Redirect "order.htm"
End If
%>

many tahx
regards
nusrat

__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/


---

Improve your web design skills with these new books from Glasshaus.

Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #5 by =?iso-8859-1?q?Deepa=20Ravikumar?= <deepar_07@y...> on Thu, 25 Apr 2002 05:06:50 +0100 (BST)
You'll have to use Server.CreateObject instead of
CreateObject

 --- Jack_Speranza <jsperanza@g...>
wrote: > You've no doubt checked this, but is your
CDONTS
> component registered on
> your web server?  This error message signifies
> either your web server can't
> locate the dll in the windows registry or the
> security context under which
> it is being invoked doesn't have the necessary
> privileges to execute it...
> 
> -----Original Message-----
> From: nusrat sarwar [mailto:nusratsarwar@y...]
> Sent: Wednesday, April 24, 2002 3:27 PM
> To: ASP Web HowTo
> Subject: [asp_web_howto] SOS. HELP!!!!
> 
> 
> Hi all
> please do let me know why I am getting this error
> 
> Microsoft VBScript runtime error '800a01ad' 
> 
> ActiveX component can't create object:
> 'CreateObject' 
> 
> /fam1117/cgi-bin/order.asp, line 17 
> 
> what should I do?
> its very urgent
> 
> form inputs are to be emailed the code is here 
> 
> <%
> from = request ("email")
> cnm = request ("address")
> nm=request ("name")
> phone = request ("phone")
> card = request ("cardNumber")
> cnt= request ("country")
> fax = request ("fax")
> email = request ("email")
> holder = request ("holder")
> fp = request ("fp")
> year2= request ("ExpYear")
> month2=request ("ExpMonth")
> 
> 
> 
> 'Set Mail = CreateObject("CDONTS.NewMail")
> 
> Mail.From = from
> Mail.To ="nusratsarwar@y..."
> Mail.CC ="khan@s..."
> Mail.Subject = "Order Information"
> BodyToSend = nm & " " &" has sent this mail  " &" "
> &
> vbCRLF &" " & vbCRLF& "Product required : "& fp & "
> "
> & _
> vbCRLF & "Country : " &cnt & " " & vbCRLF & "Phone
> :"
> & phone &" " & vbCRLF& "Fax : " & fax &" " & vbCRLF
> &_
> "Credit Card :"&card & " " & vbCRLF & "Exp Month is 
> :" &month2 & " " & vbCRLF  &_
>  "Exp Year is : " &year2 & " " & vbCRLF & "Card
> Holder
> Name is :" &holder & " " & vbCRLF
> Mail.Body = BodyToSend
> 
> 
> ON Error Resume Next
> Mail.Send
> If Err <> 0 then
>    Response.Write "Error Descriuption"
> &Err.Description
>    else
>     Response.Redirect "order.htm"
> End If
> %>
> 
> many tahx
> regards
> nusrat
> 
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Games - play chess, backgammon, pool and more
> http://games.yahoo.com/
> 
> 
> ---
> 
> Improve your web design skills with these new books
> from Glasshaus.
> 
> Usable Web Menus
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20
> 
> 
> ---
> 
> Improve your web design skills with these new books
> from Glasshaus.
> 
> Usable Web Menus
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20

________________________________________________________________________
For live cricket scores download  Yahoo! Score Tracker
 at: http://in.sports.yahoo.com/cricket/tracker.html
Message #6 by nusrat sarwar <nusratsarwar@y...> on Thu, 25 Apr 2002 10:25:28 -0700 (PDT)
Hi Deepa
thanx
but when I did it
it give me this error

Microsoft VBScript runtime error '800a01a8' 

Object required: 'Sever' 

/cgi-bin/order2.asp, line 17 

now why?
should I have to  have jmail like component??
or this script can do my job
regards
nusrat
--- Deepa Ravikumar <deepar_07@y...> wrote:
> You'll have to use Server.CreateObject instead of
> CreateObject
> 
>  --- Jack_Speranza <jsperanza@g...>
> wrote: > You've no doubt checked this, but is your
> CDONTS
> > component registered on
> > your web server?  This error message signifies
> > either your web server can't
> > locate the dll in the windows registry or the
> > security context under which
> > it is being invoked doesn't have the necessary
> > privileges to execute it...
> > 
> > -----Original Message-----
> > From: nusrat sarwar
> [mailto:nusratsarwar@y...]
> > Sent: Wednesday, April 24, 2002 3:27 PM
> > To: ASP Web HowTo
> > Subject: [asp_web_howto] SOS. HELP!!!!
> > 
> > 
> > Hi all
> > please do let me know why I am getting this error
> > 
> > Microsoft VBScript runtime error '800a01ad' 
> > 
> > ActiveX component can't create object:
> > 'CreateObject' 
> > 
> > /fam1117/cgi-bin/order.asp, line 17 
> > 
> > what should I do?
> > its very urgent
> > 
> > form inputs are to be emailed the code is here 
> > 
> > <%
> > from = request ("email")
> > cnm = request ("address")
> > nm=request ("name")
> > phone = request ("phone")
> > card = request ("cardNumber")
> > cnt= request ("country")
> > fax = request ("fax")
> > email = request ("email")
> > holder = request ("holder")
> > fp = request ("fp")
> > year2= request ("ExpYear")
> > month2=request ("ExpMonth")
> > 
> > 
> > 
> > 'Set Mail = CreateObject("CDONTS.NewMail")
> > 
> > Mail.From = from
> > Mail.To ="nusratsarwar@y..."
> > Mail.CC ="khan@s..."
> > Mail.Subject = "Order Information"
> > BodyToSend = nm & " " &" has sent this mail  " &"
> "
> > &
> > vbCRLF &" " & vbCRLF& "Product required : "& fp &
> "
> > "
> > & _
> > vbCRLF & "Country : " &cnt & " " & vbCRLF & "Phone
> > :"
> > & phone &" " & vbCRLF& "Fax : " & fax &" " &
> vbCRLF
> > &_
> > "Credit Card :"&card & " " & vbCRLF & "Exp Month
> is 
> > :" &month2 & " " & vbCRLF  &_
> >  "Exp Year is : " &year2 & " " & vbCRLF & "Card
> > Holder
> > Name is :" &holder & " " & vbCRLF
> > Mail.Body = BodyToSend
> > 
> > 
> > ON Error Resume Next
> > Mail.Send
> > If Err <> 0 then
> >    Response.Write "Error Descriuption"
> > &Err.Description
> >    else
> >     Response.Redirect "order.htm"
> > End If
> > %>
> > 
> > many tahx
> > regards
> > nusrat
> > 
> > __________________________________________________
> > Do You Yahoo!?
> > Yahoo! Games - play chess, backgammon, pool and
> more
> > http://games.yahoo.com/
> > 
> > 
> > ---
> > 
> > Improve your web design skills with these new
> books
> > from Glasshaus.
> > 
> > Usable Web Menus
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > r-20
> > Constructing Accessible Web Sites
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > r-20
> > Practical JavaScript for the Usable Web
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > r-20
> > 
> > 
> > ---
> > 
> > Improve your web design skills with these new
> books
> > from Glasshaus.
> > 
> > Usable Web Menus
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > r-20
> > Constructing Accessible Web Sites
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > r-20
> > Practical JavaScript for the Usable Web
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > r-20
> 
>
________________________________________________________________________
> For live cricket scores download  Yahoo! Score
> Tracker
>  at: http://in.sports.yahoo.com/cricket/tracker.html
> 
> 
> ---
> 
> Improve your web design skills with these new books
> from Glasshaus.
> 
> Usable Web Menus
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20


__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/
Message #7 by Oleg Kapeljushnik <c-oleg.kapeljushnik@w...> on Thu, 25 Apr 2002 13:42:40 -0400
its spelling error.
you said Sever
it should be Server

Oleg

-----Original Message-----
From: nusrat sarwar [mailto:nusratsarwar@y...]
Sent: April 25, 2002 1:25 PM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: SOS. HELP!!!!


Hi Deepa
thanx
but when I did it
it give me this error

Microsoft VBScript runtime error '800a01a8'

Object required: 'Sever'

/cgi-bin/order2.asp, line 17

now why?
should I have to  have jmail like component??
or this script can do my job
regards
nusrat
--- Deepa Ravikumar <deepar_07@y...> wrote:
> You'll have to use Server.CreateObject instead of
> CreateObject
>
>  --- Jack_Speranza <jsperanza@g...>
> wrote: > You've no doubt checked this, but is your
> CDONTS
> > component registered on
> > your web server?  This error message signifies
> > either your web server can't
> > locate the dll in the windows registry or the
> > security context under which
> > it is being invoked doesn't have the necessary
> > privileges to execute it...
> >
> > -----Original Message-----
> > From: nusrat sarwar
> [mailto:nusratsarwar@y...]
> > Sent: Wednesday, April 24, 2002 3:27 PM
> > To: ASP Web HowTo
> > Subject: [asp_web_howto] SOS. HELP!!!!
> >
> >
> > Hi all
> > please do let me know why I am getting this error
> >
> > Microsoft VBScript runtime error '800a01ad'
> >
> > ActiveX component can't create object:
> > 'CreateObject'
> >
> > /fam1117/cgi-bin/order.asp, line 17
> >
> > what should I do?
> > its very urgent
> >
> > form inputs are to be emailed the code is here
> >
> > <%
> > from = request ("email")
> > cnm = request ("address")
> > nm=request ("name")
> > phone = request ("phone")
> > card = request ("cardNumber")
> > cnt= request ("country")
> > fax = request ("fax")
> > email = request ("email")
> > holder = request ("holder")
> > fp = request ("fp")
> > year2= request ("ExpYear")
> > month2=request ("ExpMonth")
> >
> >
> >
> > 'Set Mail = CreateObject("CDONTS.NewMail")
> >
> > Mail.From = from
> > Mail.To ="nusratsarwar@y..."
> > Mail.CC ="khan@s..."
> > Mail.Subject = "Order Information"
> > BodyToSend = nm & " " &" has sent this mail  " &"
> "
> > &
> > vbCRLF &" " & vbCRLF& "Product required : "& fp &
> "
> > "
> > & _
> > vbCRLF & "Country : " &cnt & " " & vbCRLF & "Phone
> > :"
> > & phone &" " & vbCRLF& "Fax : " & fax &" " &
> vbCRLF
> > &_
> > "Credit Card :"&card & " " & vbCRLF & "Exp Month
> is
> > :" &month2 & " " & vbCRLF  &_
> >  "Exp Year is : " &year2 & " " & vbCRLF & "Card
> > Holder
> > Name is :" &holder & " " & vbCRLF
> > Mail.Body = BodyToSend
> >
> >
> > ON Error Resume Next
> > Mail.Send
> > If Err <> 0 then
> >    Response.Write "Error Descriuption"
> > &Err.Description
> >    else
> >     Response.Redirect "order.htm"
> > End If
> > %>
> >
> > many tahx
> > regards
> > nusrat
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Yahoo! Games - play chess, backgammon, pool and
> more
> > http://games.yahoo.com/
> >
> >
> > ---
> >
> > Improve your web design skills with these new
> books
> > from Glasshaus.
> >
> > Usable Web Menus
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > r-20
> > Constructing Accessible Web Sites
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > r-20
> > Practical JavaScript for the Usable Web
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > r-20
> >
> >
> > ---
> >
> > Improve your web design skills with these new
> books
> > from Glasshaus.
> >
> > Usable Web Menus
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > r-20
> > Constructing Accessible Web Sites
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > r-20
> > Practical JavaScript for the Usable Web
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > r-20
>
>
________________________________________________________________________
> For live cricket scores download  Yahoo! Score
> Tracker
>  at: http://in.sports.yahoo.com/cricket/tracker.html
>
>
> ---
>
> Improve your web design skills with these new books
> from Glasshaus.
>
> Usable Web Menus
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20


__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/


---

Improve your web design skills with these new books from Glasshaus.

Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20

Message #8 by "Johnson, Israel" <IJohnson@R...> on Thu, 25 Apr 2002 13:32:05 -0400
You are mission the "r" in "server".   You have "sever"...

-----Original Message-----
From: nusrat sarwar [mailto:nusratsarwar@y...]
Sent: Thursday, April 25, 2002 1:25 PM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: SOS. HELP!!!!


Hi Deepa
thanx
but when I did it
it give me this error

Microsoft VBScript runtime error '800a01a8' 

Object required: 'Sever' 

/cgi-bin/order2.asp, line 17 

now why?
should I have to  have jmail like component??
or this script can do my job
regards
nusrat
--- Deepa Ravikumar <deepar_07@y...> wrote:
> You'll have to use Server.CreateObject instead of
> CreateObject
> 
>  --- Jack_Speranza <jsperanza@g...>
> wrote: > You've no doubt checked this, but is your
> CDONTS
> > component registered on
> > your web server?  This error message signifies
> > either your web server can't
> > locate the dll in the windows registry or the
> > security context under which
> > it is being invoked doesn't have the necessary
> > privileges to execute it...
> > 
> > -----Original Message-----
> > From: nusrat sarwar
> [mailto:nusratsarwar@y...]
> > Sent: Wednesday, April 24, 2002 3:27 PM
> > To: ASP Web HowTo
> > Subject: [asp_web_howto] SOS. HELP!!!!
> > 
> > 
> > Hi all
> > please do let me know why I am getting this error
> > 
> > Microsoft VBScript runtime error '800a01ad' 
> > 
> > ActiveX component can't create object:
> > 'CreateObject' 
> > 
> > /fam1117/cgi-bin/order.asp, line 17 
> > 
> > what should I do?
> > its very urgent
> > 
> > form inputs are to be emailed the code is here 
> > 
> > <%
> > from = request ("email")
> > cnm = request ("address")
> > nm=request ("name")
> > phone = request ("phone")
> > card = request ("cardNumber")
> > cnt= request ("country")
> > fax = request ("fax")
> > email = request ("email")
> > holder = request ("holder")
> > fp = request ("fp")
> > year2= request ("ExpYear")
> > month2=request ("ExpMonth")
> > 
> > 
> > 
> > 'Set Mail = CreateObject("CDONTS.NewMail")
> > 
> > Mail.From = from
> > Mail.To ="nusratsarwar@y..."
> > Mail.CC ="khan@s..."
> > Mail.Subject = "Order Information"
> > BodyToSend = nm & " " &" has sent this mail  " &"
> "
> > &
> > vbCRLF &" " & vbCRLF& "Product required : "& fp &
> "
> > "
> > & _
> > vbCRLF & "Country : " &cnt & " " & vbCRLF & "Phone
> > :"
> > & phone &" " & vbCRLF& "Fax : " & fax &" " &
> vbCRLF
> > &_
> > "Credit Card :"&card & " " & vbCRLF & "Exp Month
> is 
> > :" &month2 & " " & vbCRLF  &_
> >  "Exp Year is : " &year2 & " " & vbCRLF & "Card
> > Holder
> > Name is :" &holder & " " & vbCRLF
> > Mail.Body = BodyToSend
> > 
> > 
> > ON Error Resume Next
> > Mail.Send
> > If Err <> 0 then
> >    Response.Write "Error Descriuption"
> > &Err.Description
> >    else
> >     Response.Redirect "order.htm"
> > End If
> > %>
> > 
> > many tahx
> > regards
> > nusrat
> > 
> > __________________________________________________
> > Do You Yahoo!?
> > Yahoo! Games - play chess, backgammon, pool and
> more
> > http://games.yahoo.com/
> > 
> > 
> > ---
> > 
> > Improve your web design skills with these new
> books
> > from Glasshaus.
> > 
> > Usable Web Menus
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > r-20
> > Constructing Accessible Web Sites
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > r-20
> > Practical JavaScript for the Usable Web
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > r-20
> > 
> > 
> > ---
> > 
> > Improve your web design skills with these new
> books
> > from Glasshaus.
> > 
> > Usable Web Menus
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > r-20
> > Constructing Accessible Web Sites
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > r-20
> > Practical JavaScript for the Usable Web
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > r-20
> 
>
________________________________________________________________________
> For live cricket scores download  Yahoo! Score
> Tracker
>  at: http://in.sports.yahoo.com/cricket/tracker.html
> 
> 
> ---
> 
> Improve your web design skills with these new books
> from Glasshaus.
> 
> Usable Web Menus
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20


__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/


---

Improve your web design skills with these new books from Glasshaus.

Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #9 by nusrat sarwar <nusratsarwar@y...> on Thu, 25 Apr 2002 10:50:27 -0700 (PDT)
Hi Oleg
many thanx
I think I have taken too much tension
havent slept well during this week ,that's why
oh man what a mistake
many many thanx
take care
regards
nusrat
--- Oleg Kapeljushnik <c-oleg.kapeljushnik@w...>
wrote:
> its spelling error.
> you said Sever
> it should be Server
> 
> Oleg
> 
> -----Original Message-----
> From: nusrat sarwar [mailto:nusratsarwar@y...]
> Sent: April 25, 2002 1:25 PM
> To: ASP Web HowTo
> Subject: [asp_web_howto] RE: SOS. HELP!!!!
> 
> 
> Hi Deepa
> thanx
> but when I did it
> it give me this error
> 
> Microsoft VBScript runtime error '800a01a8'
> 
> Object required: 'Sever'
> 
> /cgi-bin/order2.asp, line 17
> 
> now why?
> should I have to  have jmail like component??
> or this script can do my job
> regards
> nusrat
> --- Deepa Ravikumar <deepar_07@y...> wrote:
> > You'll have to use Server.CreateObject instead of
> > CreateObject
> >
> >  --- Jack_Speranza <jsperanza@g...>
> > wrote: > You've no doubt checked this, but is your
> > CDONTS
> > > component registered on
> > > your web server?  This error message signifies
> > > either your web server can't
> > > locate the dll in the windows registry or the
> > > security context under which
> > > it is being invoked doesn't have the necessary
> > > privileges to execute it...
> > >
> > > -----Original Message-----
> > > From: nusrat sarwar
> > [mailto:nusratsarwar@y...]
> > > Sent: Wednesday, April 24, 2002 3:27 PM
> > > To: ASP Web HowTo
> > > Subject: [asp_web_howto] SOS. HELP!!!!
> > >
> > >
> > > Hi all
> > > please do let me know why I am getting this
> error
> > >
> > > Microsoft VBScript runtime error '800a01ad'
> > >
> > > ActiveX component can't create object:
> > > 'CreateObject'
> > >
> > > /fam1117/cgi-bin/order.asp, line 17
> > >
> > > what should I do?
> > > its very urgent
> > >
> > > form inputs are to be emailed the code is here
> > >
> > > <%
> > > from = request ("email")
> > > cnm = request ("address")
> > > nm=request ("name")
> > > phone = request ("phone")
> > > card = request ("cardNumber")
> > > cnt= request ("country")
> > > fax = request ("fax")
> > > email = request ("email")
> > > holder = request ("holder")
> > > fp = request ("fp")
> > > year2= request ("ExpYear")
> > > month2=request ("ExpMonth")
> > >
> > >
> > >
> > > 'Set Mail = CreateObject("CDONTS.NewMail")
> > >
> > > Mail.From = from
> > > Mail.To ="nusratsarwar@y..."
> > > Mail.CC ="khan@s..."
> > > Mail.Subject = "Order Information"
> > > BodyToSend = nm & " " &" has sent this mail  "
> &"
> > "
> > > &
> > > vbCRLF &" " & vbCRLF& "Product required : "& fp
> &
> > "
> > > "
> > > & _
> > > vbCRLF & "Country : " &cnt & " " & vbCRLF &
> "Phone
> > > :"
> > > & phone &" " & vbCRLF& "Fax : " & fax &" " &
> > vbCRLF
> > > &_
> > > "Credit Card :"&card & " " & vbCRLF & "Exp Month
> > is
> > > :" &month2 & " " & vbCRLF  &_
> > >  "Exp Year is : " &year2 & " " & vbCRLF & "Card
> > > Holder
> > > Name is :" &holder & " " & vbCRLF
> > > Mail.Body = BodyToSend
> > >
> > >
> > > ON Error Resume Next
> > > Mail.Send
> > > If Err <> 0 then
> > >    Response.Write "Error Descriuption"
> > > &Err.Description
> > >    else
> > >     Response.Redirect "order.htm"
> > > End If
> > > %>
> > >
> > > many tahx
> > > regards
> > > nusrat
> > >
> > >
> __________________________________________________
> > > Do You Yahoo!?
> > > Yahoo! Games - play chess, backgammon, pool and
> > more
> > > http://games.yahoo.com/
> > >
> > >
> > > ---
> > >
> > > Improve your web design skills with these new
> > books
> > > from Glasshaus.
> > >
> > > Usable Web Menus
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > > r-20
> > > Constructing Accessible Web Sites
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > > r-20
> > > Practical JavaScript for the Usable Web
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > > r-20
> > >
> > >
> > > ---
> > >
> > > Improve your web design skills with these new
> > books
> > > from Glasshaus.
> > >
> > > Usable Web Menus
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > > r-20
> > > Constructing Accessible Web Sites
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > > r-20
> > > Practical JavaScript for the Usable Web
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > > r-20
> >
> >
>
________________________________________________________________________
> > For live cricket scores download  Yahoo! Score
> > Tracker
> >  at:
> http://in.sports.yahoo.com/cricket/tracker.html
> >
> >
> > ---
> >
> 
=== message truncated ===


__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/
Message #10 by nusrat sarwar <nusratsarwar@y...> on Thu, 25 Apr 2002 10:57:26 -0700 (PDT)
yeah 
Thanx Johnson
regards
nusrat

--- "Johnson, Israel" <IJohnson@R...> wrote:
> You are mission the "r" in "server".   You have
> "sever"...
> 
> -----Original Message-----
> From: nusrat sarwar [mailto:nusratsarwar@y...]
> Sent: Thursday, April 25, 2002 1:25 PM
> To: ASP Web HowTo
> Subject: [asp_web_howto] RE: SOS. HELP!!!!
> 
> 
> Hi Deepa
> thanx
> but when I did it
> it give me this error
> 
> Microsoft VBScript runtime error '800a01a8' 
> 
> Object required: 'Sever' 
> 
> /cgi-bin/order2.asp, line 17 
> 
> now why?
> should I have to  have jmail like component??
> or this script can do my job
> regards
> nusrat
> --- Deepa Ravikumar <deepar_07@y...> wrote:
> > You'll have to use Server.CreateObject instead of
> > CreateObject
> > 
> >  --- Jack_Speranza <jsperanza@g...>
> > wrote: > You've no doubt checked this, but is your
> > CDONTS
> > > component registered on
> > > your web server?  This error message signifies
> > > either your web server can't
> > > locate the dll in the windows registry or the
> > > security context under which
> > > it is being invoked doesn't have the necessary
> > > privileges to execute it...
> > > 
> > > -----Original Message-----
> > > From: nusrat sarwar
> > [mailto:nusratsarwar@y...]
> > > Sent: Wednesday, April 24, 2002 3:27 PM
> > > To: ASP Web HowTo
> > > Subject: [asp_web_howto] SOS. HELP!!!!
> > > 
> > > 
> > > Hi all
> > > please do let me know why I am getting this
> error
> > > 
> > > Microsoft VBScript runtime error '800a01ad' 
> > > 
> > > ActiveX component can't create object:
> > > 'CreateObject' 
> > > 
> > > /fam1117/cgi-bin/order.asp, line 17 
> > > 
> > > what should I do?
> > > its very urgent
> > > 
> > > form inputs are to be emailed the code is here 
> > > 
> > > <%
> > > from = request ("email")
> > > cnm = request ("address")
> > > nm=request ("name")
> > > phone = request ("phone")
> > > card = request ("cardNumber")
> > > cnt= request ("country")
> > > fax = request ("fax")
> > > email = request ("email")
> > > holder = request ("holder")
> > > fp = request ("fp")
> > > year2= request ("ExpYear")
> > > month2=request ("ExpMonth")
> > > 
> > > 
> > > 
> > > 'Set Mail = CreateObject("CDONTS.NewMail")
> > > 
> > > Mail.From = from
> > > Mail.To ="nusratsarwar@y..."
> > > Mail.CC ="khan@s..."
> > > Mail.Subject = "Order Information"
> > > BodyToSend = nm & " " &" has sent this mail  "
> &"
> > "
> > > &
> > > vbCRLF &" " & vbCRLF& "Product required : "& fp
> &
> > "
> > > "
> > > & _
> > > vbCRLF & "Country : " &cnt & " " & vbCRLF &
> "Phone
> > > :"
> > > & phone &" " & vbCRLF& "Fax : " & fax &" " &
> > vbCRLF
> > > &_
> > > "Credit Card :"&card & " " & vbCRLF & "Exp Month
> > is 
> > > :" &month2 & " " & vbCRLF  &_
> > >  "Exp Year is : " &year2 & " " & vbCRLF & "Card
> > > Holder
> > > Name is :" &holder & " " & vbCRLF
> > > Mail.Body = BodyToSend
> > > 
> > > 
> > > ON Error Resume Next
> > > Mail.Send
> > > If Err <> 0 then
> > >    Response.Write "Error Descriuption"
> > > &Err.Description
> > >    else
> > >     Response.Redirect "order.htm"
> > > End If
> > > %>
> > > 
> > > many tahx
> > > regards
> > > nusrat
> > > 
> > >
> __________________________________________________
> > > Do You Yahoo!?
> > > Yahoo! Games - play chess, backgammon, pool and
> > more
> > > http://games.yahoo.com/
> > > 
> > > 
> > > ---
> > > 
> > > Improve your web design skills with these new
> > books
> > > from Glasshaus.
> > > 
> > > Usable Web Menus
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > > r-20
> > > Constructing Accessible Web Sites
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > > r-20
> > > Practical JavaScript for the Usable Web
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > > r-20
> > > 
> > > 
> > > ---
> > > 
> > > Improve your web design skills with these new
> > books
> > > from Glasshaus.
> > > 
> > > Usable Web Menus
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> > > r-20
> > > Constructing Accessible Web Sites
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> > > r-20
> > > Practical JavaScript for the Usable Web
> > >
> >
>
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> > > r-20
> > 
> >
>
________________________________________________________________________
> > For live cricket scores download  Yahoo! Score
> > Tracker
> >  at:
> http://in.sports.yahoo.com/cricket/tracker.html
> > 
> > 
> > ---
> > 
> > Improve your web design skills with these new
> books
> > from Glasshaus.
> 
=== message truncated ===


__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/

  Return to Index