I did some research on paying for posting. First I want to say, I not good with coding and so any help is appreciated.
I want to bounce this idea off the forum and see if my logic works or not. This is what I have in mind. In Postad.aspx file, I'll include my Finish button to handle the Google Checkout Buy Now button. If other words, Finish would redirect the user to Google Check and once transaction is completed, list the ad. Would this work? Can someone help me with the coding if it does work or point me to a direction of a sample coding.
Below is a sample codes for the Google Check out Buy Now button.
Thanks in advance!
<form method="POST"
action="https://checkout.google.com/api/checkout/v2/checkoutForm/Merchant/1234567890"
accept-charset="utf-8">
<input type="hidden" name="item_name_1" value="Peanut Butter"/>
<input type="hidden" name="item_description_1" value="Chunky peanut butter."/>
<input type="hidden" name="item_quantity_1" value="1"/>
<input type="hidden" name="item_price_1" value="3.99"/>
<input type="hidden" name="item_currency_1" value="USD"/>
<input type="hidden" name="ship_method_name_1" value="UPS Ground"/>
<input type="hidden" name="ship_method_price_1" value="10.99"/>
<input type="hidden" name="ship_method_currency_1" value="USD"/>
<input type="hidden" name="tax_rate" value="0.0875"/>
<input type="hidden" name="tax_us_state" value="NY"/>
<input type="hidden" name="_charset_"/>
<input type="image" name="Google Checkout" alt="Fast checkout through Google"
src="http://checkout.google.com/buttons/checkout.gif?merchant_id=1234567890&w=180&h=46&style=white&variant=text&loc=en_US"
height="46" width="180"/>
</form>