您的位置首页百科问答

ASP程序里的Response.Write用法

1、如果想要要在连接中传递参数,则可用下面方法:

 string param = "传递的参数";

Response.Write("<script languge='javascript'>alert('成功改动'); 

window.location.rel="nofollow" href='index.aspx?par =" + param + "'</script>");

ASP程序里的Response.Write用法

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

<Triggers>

<asp:PostBackTrigger ControlID="GridView" />

</Triggers>

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

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

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

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

ASP程序里的Response.Write用法

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

Response.Write("<script languge='javascript'>window.parent.popupContent.Hide();</script>");

Response.Write("<script 

languge='javascript'>window.parent.grdCarToOther.PerformCallback(" + iCrdID + ");;</script>");

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

ASP程序里的Response.Write用法