AOL And Shoping Cart
has anyone got experience of fixing problem in AOL browser? I've a shoping cart with few products works fine with IE firefox safari and everthing. But the AOL (home edition) of AOL users seems to get problem to buy the product.
View Replies
ADVERTISEMENT
Which is the best way (some links please) to write code for a cart in asp? Is there a way to write a cart that works also without cookies?
View Replies
View Related
i want to print some data in the menu list. first, i have to select (checkbox) several data in the different page and then after complete it, i hit the print button. it's a same like add cart but with no trolly.
View Replies
View Related
I need to build my own simple cart that writes to cookies only. I can write
and read cookies, but don't have a clue as to how I can add multiple
products, change quantites, etc. All I need is a cart that stores
information in cookies and the user prints their order. That's it. Where can
I find such information?
View Replies
View Related
i was wondering if anyone could give me a few ideas on how to create a shopping cart using asp or even a good website asi have been searching and have not found any
View Replies
View Related
how should i assign a unique id to a user ? i've used the sessionid in
the past but have found that the sessionid is not unique. is there a
better solution for assigning a unique id to each visitor ?
secondly, what's the best way to track visitors as they move about my
site ? i'll be recording items in the cart in a database but will
still need to track the user on each page ... session variables or a
cookie ?
View Replies
View Related
what's the best ASP shopping-cart available? I have looked in Aspin and there seems to be a few good one's around. Anybody tried any of them? Ofcourse, it needs to be fully-featured with order-tracking, intranet product management, etc.
View Replies
View Related
I have made the following shopping cart. which displays data fine but when i hit the add to cart it is saying "No value given for one or more required parameters"
so i have not seen my cart working I would like to also add Images to this later but im taking one step at a time Code:
View Replies
View Related
how i would go about creating an ASP/SQL Shopping Cart???
View Replies
View Related
Is it possible to remove just the session.sessionID, I have other session variables that I would like to keep?I use this for saving cart information but it needs to be different each time.
View Replies
View Related
Im building a simple asp shopping cart for my college assignment, however im having trouble adding more items to my cart.
i can add one item, but when i add another the previous does not show. Here is my code so far for my cart. I figured i need to somehow create an array? so i can loop through the session array? Code:
View Replies
View Related
I am working on shopping cart and stuck on this issue for a long time
this is what i am trying to do
user comes and adds a item in the cart so now the shopping cart looks like this
football_shirt_2
where 2 is the qty
the user then shops around and decides he needs to buy 3 more shirts
so what i want to do is when he adds 3 more shirts i want to update the qty in the earlier item and make it 5 because earlier it was 2 Code:
View Replies
View Related
I have built a site with a cart which works fine but the client now wants stock to be deducted when the items is added to the cart. I have added 3 fields to the products table Stock, inBasket and Sold. The issue is that when they add to their Cart I deduct from Stock and add to inBasket.
If the user never completes the purchase then the stock level is always too low and inbasket too high.
If the users sales is completed in PayPal they are returned to the site and their Order is marked as paid or cancelled.
What I'd like if it is possible is a way set a timer on an order so that if it didn't complete the stock is reinstated.
View Replies
View Related
my company is in need of a shoppingcart that has adavanced inventory management in the admin, i.e. calculates 'cost of goods sold' in reports and FIFO etc. Anyone know of any?
View Replies
View Related
I've built an website using a shopping cart feature from a third party that is hosting the site. It uses an ASP script that looks like this: <%=getAttribute("item",93,"addToCartHTML") My problem is that when they get to the page with the add to cart button it is automatically filled with a value of 1 of that item.
My client wants to be able to click this button and if they had previously added this item to their cart it wouldn't add it a second time. I think I need some sort of "if" statement but I don't know what it would be and where I would add it.
View Replies
View Related
i'm needing a different shopping cart method to update an inventory catalog. it uses the dictionary object, stored as a session variable. not efficient, as some has let me know. i know of one other method of building temp tables in the db. are there any other methods that are efficient and scalable?
View Replies
View Related
Does anyone knows how to send the contents of a shopping cart when a user click on the check out feature of the shopping cart?
View Replies
View Related
We have a cart we built using sessions, it has been fine until now where our server times out at 20 mins no matter what we or the server techs do, so now we want to redesign the cart using tables soley, can this be done?
If so is there any disadvanages of doing this? Anyone know of a tutorial to do this so we can get started?
View Replies
View Related
Has anyone here had success with getting an ASP shopping cart to talk to a Quickbooks POS system? Any suggestions?? And yes, I have checked on google already.
View Replies
View Related
i have a form, inside got 3 drop down and one text box. and got one Add button. wat i wan to do is:
after fill in the value for this form, then click the add button and it will display the value in the 2nd page. the data hasnt insert into the database yet. then when user click on continue button in the 2nd page, it can add another new record , etc...until the user click on the FINISH button on the 2nd page, then all the records will insert into DB. it is same as the shopping cart ...but i duno how is work? Code:
View Replies
View Related
i have a basic asp page that acts as an online bookstore. on my cart page i am having trouble generating 3 numbers; a subtotal, a shipping total, and a final price. here is my code:
View Replies
View Related
I am trying to make a shopping cart in ASP. My backend is in SQL. Now during the user access I would like to make some restriction like if I have only one product left, and two buyer wants to buy it simountenously at the same time. Now how can I restrict that. Anyone having any redymade code for that.
Another thing how to keep the session information about the user. Like if I want to know the details of the user. How to do it with cookies?
View Replies
View Related
how many minutes big e-commerce web sites, like amazon.com, set their shopping cart sesssion.timeout?
View Replies
View Related
I purchased a shopping cart template at www.ecommercetemplates.com for my two sites. The cart is nice and very user friendly (there is my product plug ) but it cannot deliver electronic products, which is what I sell.
I paid a developer some $$$ to write a script that would email the ZIP of the product purchased to the customer. Everything was working fine until I added PayPal as a payment provider. Someone using 2checkout at my site gets the email with the ZIP of their purchase attached. PayPal customers get:
ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/vsadmin/inc/incthanks.asp, line 294
View Replies
View Related
I've got a two dimensional array that I'd like to "compress" into a smaller array. The first dimension of the array contains a product price code (1-5) and the second dimension is the quantity (I'm using it in a shopping cart). I'd like to go through the array, grabbing the quantity for each price code and consolidate. Codes will probably occur more than once.I'm having problems getting started on this and was hoping someone could point me in the right direction.I know this isn't much, but this is what I've started with:Code:
For i = LBound(arrPriceID) TO UBound(arrPriceID)
If arrPriceID(i,0) <> "" then
intPriceID = arrPriceID(i,0)
End if
View Replies
View Related
I have created a few web site apps that use e-commerce technologies using ASP and XML. These are typical sites, with shipping, tax, blah blah. Usually it's standard shipping and is just related to the weight of the entire order.
Now, I've been asked to add several shipping options (i.e. Overnight, One-Day, Standard). My question...I did some searching around first but without luck...are the sites that offer multiple shipping options tied in with another company such as UPS? Or is it just more data that I can deal with on my own?
View Replies
View Related
anyone has any program or tool or code which builds a shopping cart easily?
View Replies
View Related
i am trying to code a shopping cart into my website for users to add/remove items, and complete their transactions when finished.Have looked on the web and found some rather complex examples
Could anyone tell me the basics of how i could implement this, or point me in the direction of an example or tutorial on the web.
View Replies
View Related
i'm about to write a shopping cart application and need to know the best way
to assign a unique id to each order.previously i used the sessionid which i've since found out isn't unique.can someone please advise me as to the most reliable way to assign a unique id to a transaction.i'm using classic asp and an access database.
i'd rather not use the session object due to issues with a previous shopping
cart application.
View Replies
View Related
I am new to ASP development, and i got a problem while developing my book online shopping cart.I am currently storing book information on a access database and retriveving one by one. but when displaying book information on the page "add to cart" image has no reference to that book that align with it. how do i put reference to the particulart book that i am clicking for ( add to cart)
View Replies
View Related
Has anyone got a script for a domains/hosting cart running off an Access db. There seems to be quite a few PHP/Perl versions around but very little ASP.
View Replies
View Related
Can someone provide some background or reviews regarding Comersus Cart http://www.comersus.com)
1- This product is Open Source, is this good? (security, reliability, etc)
2- They have a huge control panel with thousands of functions, do you have
to learn all that to install a store?
3- Comersus provide the PayPal (http://www.paypal.com) integration for free
with distribution of digital goods. Is this secure?
View Replies
View Related
i tried to add a link to empty my shopping cart by simply adding session.abandon into the link.this however automatically abandoned the session when i didnt want it to whats the best way to do this? should i use a form button instead of a standard link or make the link goto to an empty cart page that will end the session then redirect?
View Replies
View Related