What's the best way to integrate DNN with the PayPal shopping cart?
I have a DNN e-commerce site that I want to integrate with the PayPal shopping cart. Other systems depend on the PayPal shopping cart, so I can't use my own. I have tried linking 'Add to Cart' buttons that pass product information to the PayPal cart, but I've run into the following problems:
-- PayPal's recommended method is to create a form with hidden input fields that contain the product information associated with each 'Add to Cart' button. The button submits the hidden form. This doesn't work, because DNN doesn't allow forms in the text/html module.
-- PayPal says in that case, submit product information using an <a> tag and a query string. For security reasons, I don't want to do that--it looks to me like just asking for trouble.
I've looked at several forms modules, but I'm not sure any of these will really do what I need.
Has anyone else run into this problem? Can anyone give me any suggestions on how to address it? Thanks.