进一步的说,从 V4.5的发布到现在,是半年多了,今天,终于得发布新小版本了。
由于上一版本过于稳定,导致此版本无bug修正项,但是新增了几个重要的性能优化功能。
public class PageBase:System.Web.UI.Page
{
protected override void OnInit(EventArgs e)
{
AppDebug.Start();//开启记录页面的SQL
base.OnInit(e);
}
protected override void OnPreRenderComplete(EventArgs e)
{
base.OnPreRenderComplete(e);
Response.Write(AppDebug.Info);//输出记录页面的SQL
AppDebug.Stop();//停止记录页面的SQL
}
}