Well, my site has 3 verification options - our credit card processing, PayPal and Google Checkout, I process the first two, processing the request, and then redirecting the user to the receipt page to display the printed ticket and show the transfer details. It is very difficult to implement using Google Check Out.
So I use Response.Redirect(...) to redirect the user to Google CheckOut. As far as I understand, there is no way to provide Google with a redirect URL for successful transactions. The only way to do this is to provide a Google URL for sending notifications.
So, I'm going to create an aspx page to listen for notifications from Google. Here it will be placed in the database.
My problem ... How to implement all this for a smooth user interface? The user will be redirected to Google (I donโt know how to do Response.Redirect in a new tab or window), so the user will now register with Google, processing the transaction. Then they themselves must return to my site, log in, and then, perhaps, click on the link of recent purchases ?? Then I can display the receipt. That doesn't seem right ... Is there any other way that other people have implemented Google Checkout a little more smoothly.
source share