How to add paypal to your C# application.
- ThibmoRozier
- Topic Author
- Offline
- Elite Member
10 years 3 weeks ago #123
by ThibmoRozier
How to add paypal to your C# application. was created by ThibmoRozier
To help you out with the donation button:
Just add a button image and you're done.
private void btnDonate_Click(object sender, System.EventArgs e)
{
string url = "";
string business = "my@paypalemail.com"; // your paypal email
string description = "Donation"; // '%20' represents a space. remember HTML!
string country = "AU"; // AU, US, etc.
string currency = "AUD"; // AUD, USD, etc.
url += "https://www.paypal.com/cgi-bin/webscr" +
"?cmd=" + "_donations" +
"&business=" + business +
"&lc=" + country +
"&item_name=" + description +
"¤cy_code=" + currency +
"&bn=" + "PP%2dDonationsBF";
System.Diagnostics.Process.Start(url);
}
Just add a button image and you're done.
Please Log in or Create an account to join the conversation.
- robertcorey
- Offline
- New Member
Less
More
- Posts: 1
- Thank you received: 0
6 years 11 months ago - 6 years 11 months ago #3749
by robertcorey
Replied by robertcorey on topic How to add paypal to your C# application.
There are procedures to follow to easily integrate the PayPal payment system into your e-commerce site. Open your Visual Studio, go to the file menu, select New, go to Project, choose ASP.NET MVC application then provide it an appropriate name and click on the OK button. I’ll bookmark your weblog and take a look at once more right here regularly. Custom essay writing service will give you opportunity to spend more free time with friends. Visit https://www.essayguardian.com/
Last edit: 6 years 11 months ago by robertcorey.
Please Log in or Create an account to join the conversation.
- ThibmoRozier
- Topic Author
- Offline
- Elite Member
6 years 11 months ago #3750
by ThibmoRozier
Please Log in or Create an account to join the conversation.
Moderators: Gamma-Man
Time to create page: 0.194 seconds