ASP.NET——提示框

提示框1: 弹出提醒 

Response.Write("<script language='javascript'>alert('已经添加!');</script>");

提示框2:弹出提醒,确定后跳转到指定页面

Response.Write("<script language='javascript'>alert('xxxx');window.location='xxx.aspx'</script>");
原文地址:https://www.cnblogs.com/bluewhy/p/5129711.html