继续添加,确认删除,弹出对话框,跳转

为删除按钮添加确认事件

this.Button1.Attributes.Add("onclick", "javascript:if(confirm('确定要删除吗?')){}else{return false;}");

以上代码需加在Page_Load事件里


为添加按钮成功,添加是否继续添加事件

ClientScript.RegisterStartupScript(this.GetType(), "",  "");


为更新按钮成功,弹出对话框,并跳转

ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "", "", false);



你可能感兴趣的:(继续添加,确认删除,弹出对话框,跳转)