摘要: 测试代码如下:using System;using System.Collections.Generic;using System.Text;using System.Collections;using System.Web;using Test.Model;namespace TestPermission{ class PermissionHttpModule : System.Web.IHttpModule { public void Init(HttpApplication httpApplication) { httpApp... 阅读全文
posted @ 2013-11-14 17:07 志在必得Shaun 阅读(1543) 评论(0) 推荐(0) 编辑
摘要: 随机漂浮图片JS://公共脚本文件 main.js function addEvent(obj,evtType,func,cap){ cap=cap||false; if(obj.addEventListener){ obj.addEventListener(evtType,func,cap); return true; }else if(cap){ if(document.all){ obj.setCapture(); }els... 阅读全文
posted @ 2013-11-14 16:42 志在必得Shaun 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 生成ZIP压缩包C#代码如下:using System;using System.Collections.Generic;using System.Text;using ICSharpCode.SharpZipLib;using ICSharpCode.SharpZipLib.Checksums;using ICSharpCode.SharpZipLib.Zip;using System.IO;using log4net;using log4net.Config;namespace Test.BLL{ public class TestZipFile { protec... 阅读全文
posted @ 2013-11-14 11:32 志在必得Shaun 阅读(3992) 评论(0) 推荐(0) 编辑
摘要: 实现功能:新增特定类型的新闻时,自动追加特定的背景图片。第一版(错误信息:不能在 'inserted' 表和 'deleted' 表中使用 text、ntext 或 image 列),代码如下:--创建insert插入类型触发器if (object_id('tgr_news_QA_insert', 'tr') is not null) drop trigger tgr_news_QA_insertgocreate trigger tgr_news_QA_inserton news for insert --插入触发as --定义变 阅读全文
posted @ 2013-11-14 10:10 志在必得Shaun 阅读(4478) 评论(0) 推荐(0) 编辑