472,103 Members | 1,032 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,103 software developers and data experts.

How to send results of a ASP shopping cart?

Hey Everybody,
I am very new to ASP. I have been trying to create an oonline menu for a cafe. I have used html, then JavaScript and then I was told to forget about Java and go with ASP.
So I did. I found this script and I like it but there is one problem, I don't know how to get the information on the final page to send. I know how to change everything but that.

The sample page of the code is provided at here
and the code is displayed here

On the last page I would like to have them input there name, address, telephone number and email then be able to send the email to me.
I think I have to do something at the bottom around "Thank you for your order!" I tried a few things but no go.
Thanks for any help you may offer!!
Aug 28 '06 #1
3 1826
Hey Everybody,
I am very new to ASP. I have been trying to create an oonline menu for a cafe. I have used html, then JavaScript and then I was told to forget about Java and go with ASP.
So I did. I found this script and I like it but there is one problem, I don't know how to get the information on the final page to send. I know how to change everything but that.

The sample page of the code is provided at here
and the code is displayed here

On the last page I would like to have them input there name, address, telephone number and email then be able to send the email to me.
I think I have to do something at the bottom around "Thank you for your order!" I tried a few things but no go.
Thanks for any help you may offer!!
hi ,

try this code for send mail to ur needs

<%
Dim MyBody
Dim MyCDONTSMail
%>

<%
Set MyCDONTSMail = CreateObject("CDONTS.NewMail")
MyCDONTSMail.From= "somebody@nowhere.com"
MyCDONTSMail.To= "nobody@nowhere.com"
MyCDONTSMail.Subject="This is a Test"
MyBody = "Thank you for ordering that stuff" & vbCrLf
MyBody = MyBody & "We appretiate your business" & vbCrLf
MyBody = MyBody & "Your stuff will arrive within 7 business days"
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send
set MyCDONTSMail=nothing
%>
Aug 30 '06 #2
hi ,

try this code for send mail to ur needs

<%
Dim MyBody
Dim MyCDONTSMail
%>

<%
Set MyCDONTSMail = CreateObject("CDONTS.NewMail")
MyCDONTSMail.From= "somebody@nowhere.com"
MyCDONTSMail.To= "nobody@nowhere.com"
MyCDONTSMail.Subject="This is a Test"
MyBody = "Thank you for ordering that stuff" & vbCrLf
MyBody = MyBody & "We appretiate your business" & vbCrLf
MyBody = MyBody & "Your stuff will arrive within 7 business days"
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send
set MyCDONTSMail=nothing
%>
Thanks lakshmanmcaj... but I need the order to be sent with the email to me. Any ideas?
Aug 31 '06 #3
Thanks lakshmanmcaj... but I need the order to be sent with the email to me. Any ideas?

hi ,


u can see this online CCAvenue.com like that paymetn gateway provider is there so u search and get information frm there.thats depenting upon ur application i think may be.so please contact ur payment gateway.
Sep 2 '06 #4

Post your reply

Sign in to post your reply or Sign up for a free account.

Similar topics

3 posts views Thread by Robert | last post: by
2 posts views Thread by Paul Bruneau | last post: by
1 post views Thread by madison | last post: by
1 post views Thread by Adil Akram | last post: by
2 posts views Thread by G.E.M.P | last post: by
1 post views Thread by jecha | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.