当我点击应重定向到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 +
"¤cy_code=" + currency +
"&bn=" + "PP%2dBuyNowBF";
System.Diagnostics.Process.Start("explorer.exe", url);
}
这是aspx代码:
我真的不知道问题是什么
答案 0 :(得分:0)
您的程序启动文件夹资源管理器(因此显示您的默认本地目录),而不是您的Web浏览器。
explorer.exe
替换iexplore.exe
可以解决您的问题。