protected void Button_ok_Click(object sender, EventArgs e)
    {
        string cs_data = web_data.Text;
        string cs_name = web_name.Text;
        string cs_tel = web_tel.Text;
        string cs_coure = web_couse.Text;
        string cs_depart = web_depart.Text;
        string cs_rezult = web_rezult.Text;
        kefu myEdit = new kefu();
        try
        {
            myEdit.Addqz(cs_data,cs_name,cs_tel,cs_coure,cs_depart,cs_rezult);  
        }
        catch(Exception me)
        {
            Response.Write("<script language = 'javascript'>alert('"+ me +"');location.herf = '/'</script>");
        }
        Response.Write("<script>window.alert('成功添加记录')</script>");        Response.Redirect("~/tusou/qzcl.aspx");    }
为什么对话框还没有弹出来确认就跳转到下一个页面了呢?