如何使用目标=“_空白”;在c#中的Response.redirect()中
本文关键字:Response 中的 redirect 目标 何使用 空白 | 更新日期: 2023-09-27 17:58:08
我正在创建一个网站,在其中我添加了一个Paypal按钮。付款成功后,我想在同一页上。所以我想付款处理应该在新的选项卡中完成。我写的代码如下:-
protected void Button7_Click(object sender, EventArgs e)
{
string business = "rajpadwa@gmail.com";
string itemName = "Funds";
int itemAmount = Int32.Parse(DropDownList1.SelectedItem.Value);
string currencyCode = "USD";
StringBuilder ppHref = new StringBuilder();
ppHref.Append("https://www.paypal.com/cgi-bin/webscr?cmd=_xclick");
ppHref.Append("&business=" + business);
ppHref.Append("&item_name=" + itemName);
ppHref.Append("&amount=" + itemAmount.ToString("#.00"));
ppHref.Append("¤cy_code=" + currencyCode);
Response.Redirect(ppHref.ToString(), true);
}
你能告诉我在使用Response.Redirect() Method...
时如何在新选项卡中进行贝宝交易吗
尝试使用客户端代码,如下面的
string newScript = "<script language='javascript'>window.open('" + ppHref.ToString() + "', '_blank');</script>";
Page.ClientScript.RegisterClientScriptBlock(this.GetType, "NewWindow", newScript);