I have a scenario where a user can input the amount he wants to be billed. I use buynow buttons that are created using code. Now in this case what what i had in mind was to:
- Set minimum billing amount to 10$
- If he enters below that, give error.
- Set the amount of buynow button 10$ when form loads.
- Once User inputs a number greater than 10 do an ajax request to controller
- Check if their is a button saved in DB against that amount that was created earier on PayPal.
- If button does not exist, create a new one on PayPal, save button in the DB.
- Return the HTML of the newly created button
- Replace the existing button with the returned HTML
Problem with this approach is that it might be too heavy. I also do not want to spread form over 2 pages. Are there any alternate and better options? Can i do some tweaks to make this option more robust?