以下为引用的内容: Code using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; namespace { /**//// /// 模板页面的基类 /// public class BasePage: System.Web.UI.Page { public void Alert(string key ,string Msg,UpdatePanel updatePanel) { string js = "Ext.onReady(function() {Ext.MessageBox.alert('提示', '" + Msg + "');})"; scriptManager.RegisterStartupscript(updatePanel, this.GetType(), key, js, true); } public void RegisStartupscript(string key, string Msg, UpdatePanel updatePanel) { // string js = "alert('" + Msg + "')"; scriptManager.RegisterStartupscript(updatePanel, this.GetType(), key, Msg, true); } } } |