日期:2014-05-17 浏览次数:20403 次
Page.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('注册成功');location.href='service.aspx'", true);
------解决方案--------------------
protected void Button_Click(object sender, EventArgs e)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('注册成功');location.href='service.aspx';", true);}
------解决方案--------------------
你的Button_Click事件是服务器控件的事件吧.
回postback的,当前页回完,service.aspx响应完,
才能转过去.足够慢的时候,像死机.