hi,
I have setup paypal IPN and it works
but I have a problen in last step (completed)
I have an SQL insert statement that populates the Credits Table like below
Credits Table
ClientId type - GUID ( I am using paypal custom variable to get this)
Credits - type int ( this should be an int "25"
Debit . type int (always "0")
My question is which IPN variable can I use for the Credits SQL variable??
if (pay_stat.Equals("Completed"))
{
// other code here//
string none = "0";
&n ...
Go to the complete details ...