|
|
 |
RE: FN-FORUM asp/vbscript shoppingcart problem
date posted 18th January 2001 15:26
This email was delivered to you by The Free Internet,
a Business Online Group company. http://www.thefreeinternet.net
---------------------------------------------------------------
It looks to me like its just creating a scring of the contents of your cart.
You just need to add this string to your e-mail string.
e.g. smtp.BodyText = (your_email_header) + CartData + (your_email_footer)
HTH
Richard
Richard Eaton @ Mediatek
E-commerce / Interactive TV / TV-commerce / Database driven web sites
Website: http://www.mediatek.co.uk
E-mail: [EMAIL REMOVED]
Tel: 01937 842463
Mobile: 07971 265698
> -----Original Message-----
> From: [EMAIL REMOVED]
> [EMAIL REMOVED] Behalf Of [EMAIL REMOVED]
> Sent: 18 January 2001 14:39
> To: [EMAIL REMOVED]
> Subject: FN-FORUM asp/vbscript shoppingcart problem
>
>
> I am using the ultradev powerclimb shopping cart system done in
> asp/vbscript. They provide the following script to enable the
> results to be emailed out in paragraph style. The problem is,
> I'm unsure where to place it. I've added a cdo mail and tried it
> in the body of that but it doesn't seem to work.
>
> has anyone got any suggestions? any help would be very welcome
> cheers in advance
> Rob
> script that powerclimb provide:
>
> UC_rowDelim = Chr(13) & Chr(10) & Chr(13) & Chr(10)
> UC_colDelim = Chr(13) & Chr(10)
> CartData = ""
> for jRow=0 to UCCart1.GetItemCount() -1
> if (iRow 0) Then CartData = CartData & UC_rowDelim
> CartData = CartData & "Title: " & _
> UCCart1.GetColumnValue("Title",jRow) & UC_colDelim
> CartData = CartData & "Quantity: " & _
> UCCart1.GetColumnValue("Quantity",jRow) & UC_colDelim
> CartData = CartData & "Price: $" & _
> UCCart1.GetColumnValue("Price",jRow) & UC_colDelim
> CartData = CartData & "Total: $" & _
> UCCart1.GetColumnValue("Total",jRow) & UC_colDelim
> CartData = CartData & UC_rowDelim
> Next
>
>
>
> ============================================================
>
> * Free listing for freelancers
> * Free to advertise jobs
> * Free jobs distribution service
> * Free database of 1000 freelancers
>
> Freelancers and Freelance Jobs
> http://www.freelancers.net
>
> To post to the Forum:
> [EMAIL REMOVED]
>
> To unsubscribe please email:
> [EMAIL REMOVED]
>
> If you have difficulties unsubscribing please email:
> [EMAIL REMOVED]
>
> To subscribe to the digest for this list or for further
> information please visit:
> http://www.freelancers.net/forum.html
>
|
 |
|