2011-12-25 136 views
0

我在我的web應用程序中使用定期付款(訂閱按鈕)功能。PayPal定期付款(訂閱按鈕)付款響應

我收取15美元\月的訂閱。

這是HTML表單我從PayPal的發電機有:

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"> 
    <input type="hidden" name="cmd" value="_s-xclick"> 
    <input type="hidden" name="hosted_button_id" value="BUTTON_ID"> 
    <input type="image" src="https://www.sandbox.paypal.com/en_US/IL/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> 
    <img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"> 
</form> 

當然,我改變了BUTTON_ID場我真正的按鈕ID。

現在,它似乎工作正常,但我如何得到一個新的訂閱通知(不通過電子郵件),我可以通過代碼處理?

我正在使用ASP.NET 4.0,Javascript & jQuery。

我想要一些幫助。謝謝!

回答