Abbas
Abbas

Reputation: 5044

Integrating PayPal in asp.net

i have recently created a test paypal account, and also verified all the details, then i created the below form for testing the paypal integration. below is the code in placed in the file:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">

    <input type="hidden" name="cmd" value="_xclick" />
    <input type="hidden" name="business" value="[email protected]" />

    <input type="hidden" name="item_name" value="My painting" />
    <input type="hidden" name="amount" value="10.00" /> 
    <input type="submit" value="Buy!" />

</form>

now when i pressed the buy button, i got the error saying:

This recipient is currently unable to receive money.

can anyone tell me what could be the issue, how can i resolve this.

Upvotes: 0

Views: 470

Answers (1)

Pekka
Pekka

Reputation: 449385

yes i have attached my hdfc bank account, but is still not verified, i got the mail that within 4-6 days they will deposit a small amount of money in my account which i need to confirm to verify my account

I can't find any official definite information, but I'm pretty sure this is your problem. Definitely wait for the verification amount to come through, and try again then.

can you tell me how can i send money to this account, this is the test account.

You would need another PayPal account to send you a small amount of money, e.g. a friend's account.

Also, Googling the error message turns up more useful information like this forum thread that deals with more possible reasons for the problem (but also stresses the need for your account to be verified.)

Upvotes: 1

Related Questions