Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

asp.net 继承自Page实现统一页面验证与错误处理

来源:中文源码网    浏览:129 次    日期:2024-05-13 03:14:08
【下载文档:  asp.net 继承自Page实现统一页面验证与错误处理.txt 】


asp.net 继承自Page实现统一页面验证与错误处理
复制代码 代码如下:isAdmin();因为当时没有用母版页去做,所以不能在母版页中统一判断权限,而当时我限于自己水平,也没有采用继承自Page这个类的方法去统一处理一些页面加载的时候都要处理的事情。现在根据“李天平(动软)”的一些代码记录下,也希望大家要学会使用继承啊! 看下一个简单的继承自Page的PageBase: 复制代码 代码如下:using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; /// ///first write by 李天平 ///up by ahuinan 2009-4-18 /// public class PageBase:System.Web.UI.Page { public PageBase() { // //TODO: 在此处添加构造函数逻辑 // } protected override void OnInit(EventArgs e) { base.OnInit(e); this.Load += new System.EventHandler(PageBase_Load); this.Error += new System.EventHandler(PageBase_Error); } //错误处理 protected void PageBase_Error(object sender, System.EventArgs e) { string errMsg = string.Empty; Exception currentError = HttpContext.Current.Server.GetLastError(); errMsg += "

系统错误:


系统发生错误, " + "该信息已被系统记录,请稍后重试或与管理员联系。
" + "错误地址: " + Request.Url.ToString() + "
" + "错误信息: " + currentError.Message.ToString() + "
" + "Stack Trace:
" + currentError.ToString(); HttpContext.Current.Response.Write(errMsg); Server.ClearError(); } private void PageBase_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { if (HttpContext.Current.Session["username"] != null) { HttpContext.Current.Response.Write("搜索吧sosuo8.com登陆测试"); } else { HttpContext.Current.Response.Write("你不是阿会楠,不要登陆"); } } } } 使用的时候: 复制代码 代码如下:public partial class _Default :PageBase { protected void Page_Load(object sender, EventArgs e) { int ID = int.Parse(Request.QueryString["ID"]); Response.Write("id:"+ID.ToString()); } }

相关内容