|
Discounting by price
9/15/2004 8:12:07 AM
(Total replies: 1)
|
| Hi Julian,
Is there a way to discount by cost of order? E.g. over £50, 10% discount. Discounting by quantity wouldn't really work in my situation.
Thanks,
Swarve |
|
|
|
Re: add image to cart
9/24/2003 6:59:29 AM
(Total replies: 1)
|
| Hi,
One way I know of displaying images related to the database, is to create an extra field in your database called "Image ID" or "Image URL." In this field you store a hyperlink to the image in your image folder. i.e. ./images/product1.jpg
Now, in Dreamweaver insert a picture, and when it asks you for the source, click on 'Data Sources' (at the top near the title bar). Provided you've got a Product based recordset; you can choose the appropriate field from your set, and press OK. ... |
|
|
|
Re: Uploading the Cart
12/1/2003 8:30:37 AM
(Total replies: 1)
|
| This is my script:
<%
SendEmail 'This line calls the function below and sends the email
function SendEmail
on error resume next 'This code will only work on a Win2k server.
Dim iMsg,iConf,Flds
Set iMsg = CreateObject("CDO.Message")
Set iConf = CreateObject("CDO.Configuration")
Set Flds = iConf.Fields
With Flds
' assume constants are defined within script file
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
... |
|
|
|
Re: Uploading the Cart
12/4/2003 7:29:35 AM
(Total replies: 1)
|
| Hi Julian,
Nothing really happened - I've deleted that line as you recommended; I still just get a blank email. I don't get any error messages at all. It works great, apart from the email. I receive it but it's blank.
Swarve Mangoose |
|
|
|
Re: Uploading the Cart
12/5/2003 4:57:26 AM
(Total replies: 1)
|
| Hi Julian,
Thanks for your patience with this, I've sorted the problem - it was looking for something that wasn't in the database - an error with the shoppingcart query.
It now sends the confirmation email from the site; looks lovely. The only problem I have is that for some reason the Sub Total, and Grand Total are both *10 more than they should be.
E.g. an order for £2.50 would appear in the sub and grand totals as £25.00
Any ideas?
Many Thanks,
Swarve Mangoose. |
|
|
|
Re: Uploading the Cart
12/9/2003 5:46:11 AM
(Total replies: 1)
|
| Looks like the error has originated from the database.
Any ideas how?
Swarve. |
|
|
|
Re: Uploading the Cart
12/10/2003 6:53:15 AM
(Total replies: 1)
|
| The Sub Total, and Grand Total are both stored *10 or *100 more than they should be.
The UnitPrice column in some orders is the same.
E.g. an order for £2.50 would appear in the sub and grand totals as £25.00 or £250.00
Swarve. |
|
|
|
|
|
|
Uploading the Cart
11/26/2003 6:03:48 AM
(Total replies: 1)
|
| Hi,
I have finished the cart, and uploaded it onto my web space. I know my web server supports asp and access database connections, and the testing DSN I have set up on my computer works a treat. However, when I host the site, nothing happens - the main page works, but any page in the site which uses a recordset doesn't work. I just get a 500 error, indicating my scripting is wrong. I don't know what to, since it all seems to work on my computer. I think I have to change my method of ... |
|
|
|
Re: Uploading the Cart
11/27/2003 8:04:47 AM
(Total replies: 1)
|
| That's Brill - I've got most of it working now.
I can't seem to add a new user though - It says I need an updateable query. I'm sure my permissions are correct. Is it scripting again?
The Swarve Mongoose |
|