protected void AddSystemAButton_Click(object sender, EventArgs e)
 {

    AlertShow(this.Page, "新增完成!!");

 }


 public static void AlertShow(System.Web.UI.Page WebPage, string Message)
    {
        string jsString = "<script language='javascript' type='text/javascript'>" + Environment.NewLine;
        jsString += "window.alert('" + Message + "'); location.href='AdminManage.aspx';" + Environment.NewLine;             jsString += "</script>";
        ScriptManager.RegisterClientScriptBlock(WebPage,typeof(string), "", jsString, false);
    }

文章標籤
全站熱搜
創作者介紹
創作者 艾小倫 的頭像
艾小倫

小倫的部落格

艾小倫 發表在 痞客邦 留言(0) 人氣(47)