Forum Moderators: buckworks
What we want to work out is a 1/2 and 1/2. The portal gets a commission and the member gets a discount. I don't want to use coupon codes, because they get passed around quite a bit. I would rather use a program where I would give the portal a specific url, which when clicked on, would lead the visitors to our site with a percentage knocked off of every product.
Has anyone run into software like that? Any recommendations? The site is in asp.
Thanks!
Instead, you have to implement some programming here. I'd give out some affiliateID (you probably already have that), to include in portal's URL pointing to your site (http://www.yoursite.tld/?affiliateID=123456), and internally associate this ID with a discount.
In a dummiest form without even DB programming, add some code in your .asp like:
if affiliateID == 123456 then Discount = 30%
else if affiliateID == 999999 then Discount = 50%
else Discount = 0
Just a quick hack -- something like this.
If you have a lot of affiliates (hundreds perhaps), and add them frequently you'd better have some form of a control panel, not to have to add new IDs into program too frequently.