Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Any one know how to pass amount to IPN

I passed user id using custom variable but
how to pass more than one details to IPN

how to pass more than one custom value to IPN

HTML
input type="hidden" name="custom" value="<%=strCustomValue%>"



In IPN code I used this.
C#
String strUser = Request.Params["custom"];



my doubt is how to take amount and more than custom values in IPN
Posted
Updated 19-Sep-18 17:16pm
v3

1 solution

Seperate the custom values with a comma ","

And then explode with the comma inside your ipn file. Very simple.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900