Paypal沙盒网址打开我的文档

时间:2017-03-05 17:34:50

标签: c# asp.net paypal-sandbox

当我点击应重定向到paypal的按钮时,我遇到了问题,它会打开我的文档。它之前运行但当我将代码转移到另一台PC时发生错误。救命啊!

这是aspx.cs中的代码

protected void btnPayOnline_Click(object sender,EventArgs e)         {

        string url = "";

        string business = "business@yahoo.com";
        string description = "Buy";
        string country = "PH";
        string currency = "PHP";
        string amount = Label1.Text;

        url += "https://www.sandbox.paypal.com/cgi-bin/webscr" +
            "?cmd=" + "_xclick" +
            "&business=" + business +
            "&amount=" + amount +
            "&lc=" + country +
            "&item_name=" + description +
            "&currency_code=" + currency +
            "&bn=" + "PP%2dBuyNowBF";

        System.Diagnostics.Process.Start("explorer.exe", url);

}

这是aspx代码:

我真的不知道问题是什么

1 个答案:

答案 0 :(得分:0)

您的程序启动文件夹资源管理器(因此显示您的默认本地目录),而不是您的Web浏览器。

explorer.exe替换iexplore.exe可以解决您的问题。