PayPal是否缺少一些简单的捐赠URL?
当我生成捐赠按钮时,PayPal返回一些HTML,可以将其粘贴到我的网页中。不幸的是,此链接生成了一些会话密钥,但没有生成。
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----Masdfasdfasdfasdfasdfasdfsadfasdfasdfasdfasdf=-----END PKCS7-----
">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
我可以在WPF应用程序中放入一些简单的URL吗?
我要放置捐赠图片的图片:
然后单击该图片:
private void donation_MouseDown(object sender, MouseButtonEventArgs e)
{
try
{
Process.Start("http://donation page here.com/");
}
catch (Exception)
{
MessageBox.Show("Something went wrong! Rest assured the cleanup monkeys have been sent!", "Woops!", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
其中Process.Start将在用户默认的Web浏览器中打开URL。
感谢您的建议。
最佳答案
生成按钮时,应在按钮创建工具的第2步中选中“使用PayPal保存按钮”。然后,您应该在结果中获得两个选项卡:包含HTML按钮的网站和包含可粘贴到电子邮件中的简单链接的电子邮件。您应该可以在应用程序中使用简单的电子邮件链接。
关于c# - 如何从WPF应用程序链接到我的PayPal捐赠页面?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8704763/