在类中写一个函数
public void WebMessageBox(string values)
{ HttpContext.Current.Response.Write("");
HttpContext.Current.Response.End();
}
public void WebMessageBox(string values,string PageURL)
{ HttpContext.Current.Response.Write("");
HttpContext.Current.Response.End();
}
只传弹出消息,是后退;重载的方法是弹出后点确定跳转指定页
通过调用页面上的javascript
如Response.Write("");
但是在页面上使用了微软提供的ajax控件的时候这个方法会出现问题
还可以通过
System.Web.UI.ScriptManager.RegisterStartupScript(this.ok, this.GetType(), "update", "alert('弹出信息');window.location.href='url;", true);
来弹出
如果要有确定的对话框就把alert换成confirm