|
Re: CDOSYS - Forgotten Password
1/22/2008 7:01:05 PM
(Total replies: 1)
|
| Your best bet would be to ask Fasthost for some code to send email independant of the cart. Then we can adapt that to work with the cart.
|
|
|
|
|
|
|
Re: Error in function GetColumnPosition
3/14/2007 6:26:35 PM
(Total replies: 1)
|
| This has got me stumped. The code looks fine. Try changing the code in the cart.asp class file from
public function GetColumnPosition(column)
on error resume next
GetColumnPosition=cint(CartColumns.selectSingleNode("Column[@name='" & column & "']").getAttribute("position"))
if err<>0 then
EvalError "Error in function GetColumnPosition"
end if
end function
to
public function ... |
|
|
|
|
|
|
Re: Problem resolved
11/25/2004 6:35:44 PM
(Total replies: 0)
|
| Thanks for the info. Glad your host sorted it out.
|
|
|
|
Re: Changing from Access DB to MySQL
3/26/2009 7:35:10 AM
(Total replies: 1)
|
| In principle it should all work OK. There is a file
CheckOut_mysql.asp
which you can use to manually insert the orders into the database. |
|
|
|
Re: tax setup for USA sales
10/24/2007 6:12:25 PM
(Total replies: 1)
|
| The solution would require some programming knowledge. Have a look in the sample database. It has a states table. That can be filtered in the same way as the Countries table in the existing checkout page in the demo.
|
|
|
|
Re: tax setup for USA sales
10/26/2007 5:35:03 PM
(Total replies: 1)
|
| I've a tutorial on shipping here, tax would be similar
http://www.charon.co.uk/content.aspx?c=78
Your conditions would be something like
if CustomersRS("state")="MN" then
objCart.SalesTax=0.065 * objCart.SubTotal
end if
|
|
|
|
Re: Forum
10/4/2005 6:51:39 PM
(Total replies: 1)
|
| This forum is a free download available from www.asp.net |
|
|
|
Re: Forum
10/5/2005 6:09:17 PM
(Total replies: 1)
|
| I just remembered, I've an article about the forum setup here:
http://www.charon.co.uk/content.aspx?CategoryID=28&ArticleID=49
|
|