摘要:using System;using System.Web;using System.Drawing;using System.Text;/// /// 产生验证码/// public class ValidateCodeHandler : IHttpHandler, System.Web.Sess... 阅读全文
图片防盗链
2015-07-29 14:29 by 风中的诺言, 141 阅读, 0 推荐, 收藏,
摘要:public void ProcessRequest(HttpContext context) { context.Response.ContentType = "image/JPEG"; // 获取文件服务器端物理路径 string FileName = context.Server.MapPat... 阅读全文
水印
2015-07-29 14:28 by 风中的诺言, 110 阅读, 0 推荐, 收藏,
摘要:public void ProcessRequest(HttpContext context) { //指定水印图片 string waterImag_Url = "~/wImages/logo.gif"; //指定默认图片 string defaultImag_Url = "~/wImages/e... 阅读全文
缓存
2015-07-29 14:25 by 风中的诺言, 143 阅读, 0 推荐, 收藏,
摘要:缓存:缓存指令必须要有的属性是:Duration、VaryByParam1、整页缓存: 整页进行缓存,设置缓存的时间(Duration 单位为秒),VaryByParam设置为none2、根据参数缓存内容: 根据参数值不同进行缓存,主要设置VaryByParam,会根据参数值不同建立缓存3、根据标头... 阅读全文
浙公网安备 33010602011771号