11 2013 档案
摘要:IHttpModule 权限 检查 登录超时检查 这样就不需要每个页面都做一次检查 也不需要继承任何父类。using System;using System.Collections.Generic;using System.Linq;using System.Web;/// /// MaQiang/// IHttpModule 权限 检查 登录超时检查 这样就不需要每个页面都做一次检查 也不需要继承任何父类/// public class MyFilter : IHttpModule{ public void Init(HttpApplication application) { applic
阅读全文
摘要:---存储过程中的原语句:---删除表DROP TABLE A_NEWTDDATA;--报错经查询:存储过程不支持DML语言;解决方法: execute immediate 'DROP TABLE A_NEWTDDATA';
阅读全文