window.location.href='index.aspx?par =" + param + "'");

2、如果在Ajax的UpdatePanel中的button中用Response.Redirect()或Response.Write()进行URL带参数的页面的话,在UpdatePanel下设置“asp: PostBackTrigger”的“ControlID”为指定的控件名称即可,如:

能够用注册client事件的方法解决UpdatePanel中的重定向问题

---------------------------------------------------------------------------

跳转到某一指定页面Response.Redirect("YxiaoLoan.aspx?Loan="+Ftype+"");

-------------------------------------------------------------------------

3、然后再输入下方的代码就完成了。

Response.Write("window.parent.popupContent.Hide();");

Response.Write("window.parent.grdCarToOther.PerformCallback(" + iCrdID + ");;");

ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "", "alert('" + ex.Message + "');", true);

标签:ASP,Response,Write