All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
用php把现有动态新闻页面改成静态页的方案_php资料_编程技术
实例详细讲解PHP中使用的运算符号_php资料_编程技术
ASP.NET技巧:如何在页面之间传递数据量较大的复杂数据?_.net资料_编程技术
.NET3.5和VS2008中的ASP.NET,AJAX_[Asp.Net教程]
SQL,Server开发的二十一条军规_[SQL,Server教程]
javascript应用实例:网页折叠菜单_JavaScript技术_编程技术
几种个人网页里常用到的特效代码介绍_JavaScript技术_编程技术
PHP实现上传文件生成小图加文字的实例_php资料_编程技术
C#中RichTextBox控件应用实例
C#教程:创建Windows服务
Reading number is top 10 pictures
The little girl with long hair1
More attractive than sora aoi4
Female model behind the bitterness, often being overcharged5
刘亦菲写真集1
Parking technology is great, that give you the keys can't stolen
Perfect small Laurie2
清纯性感的美眉2
赵惟依写真3
各种囧况!玩游戏最不喜欢出现的十件事
日本小萝莉1
Download software ranking
少妇苏霞全本
都市狐狸姑娘传
Desire a peach blossom
传奇私服架设教程
Unix video tutorial1
Unix video tutorial10
Boxer's Top ten classic battle8
Tram sex maniac 2 (H) rar bag10
仙剑奇侠传98版歌曲
Sora aoi‘s film--Lust fan wall
delv published in(发表于) 2014/1/10 6:30:54 Edit(编辑)
图片、文件防盗链程序_[Asp.Net教程]

图片、文件防盗链程序_[Asp.Net教程]

图片、文件防盗链程序_[Asp.Net教程]

关于图片盗链这个问题,毕竟是自己的劳动成功,很多人不希望别人就那么轻易地偷走了。 这个功能在很多的论坛上都具有,可能是因为盗链的行为太多了吧
反盗链的程序其实很简单,熟悉ASP.NET 应用程序生命周期的话很容易就可以写一个,运用HttpModule在BeginRequest事件中拦截请求就ok了,剩下的工作就是过滤,再过滤!
如果不熟悉HttpModule的话,可以去MSDN上查阅,介绍非常详细,地址:ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.VisualStudio.v80.chs/dv_aspnetcon/html/f1d2910f-61d0-4541-8af8-c3c108ca351f.htm。这里就不废话了

1private void Application_BeginRequest(Object source, EventArgs e)
2{
3 HttpApplication application = (HttpApplication)source;
4 HttpContext context = application.Context;
5 bool isSafe = true; //是否合法链接
6 string uri = context.Request.Url.AbsolutePath.ToLower();
7 if (uri.LastIndexOf(".") > 0 && context.Request.UrlReferrer != null)
8 {
9 string exp = uri.Substring(uri.LastIndexOf("."));
10 //这里是判断文件后缀名是否在排除的文件类型列表之内
11 bool isHas = ClassLibrary.RData.RString.StrIsIncUseSC(exp, config.ImgSafeType.Split('|'));
12 if (isHas)
13 {
14 string domainOutter = context.Request.UrlReferrer.Authority.ToLower(); //包含域名和端口
15 ArrayList arry = Common.Cache.GetDomainValid();//取系统定义的合法的域名绑定列表
16 isSafe = arry.Contains(domainOutter); //判断当前请求的域名是否在合法列表之内
17 }
18 }
19 //下面就是不合法的时候的输出了,如果有默认替代图片则输出,如果没有就生成一个,格式为.gif
20 if (!isSafe)
21 {
22 Bitmap img = null;
23 Graphics g = null;
24 MemoryStream ms = null;
25
26 try
27 {
28 string picPath = ClassLibrary.RPath.GetFullDirectory("images/unlawful.gif");
29 if (File.Exists(picPath))
30 {
31 img = new Bitmap(picPath, false);
32 }
33 else
34 {
35 img = new Bitmap(64, 64);
36 g = Graphics.FromImage(img);
37 g.Clear(Color.White);
38 Font f = new Font("宋体,黑体,Arial", 9,FontStyle.Bold);
39 SolidBrush s = new SolidBrush(Color.Red);
40 g.DrawString(Resources.Message.LawlessLink, f, s, 1, 20);
41 img.Save(picPath, ImageFormat.Gif);
42 }
43 ms = new MemoryStream();
44 img.Save(ms, ImageFormat.Gif);
45 context.Response.ClearContent();
46 context.Response.ContentType = "image/Gif";
47 context.Response.BinaryWrite(ms.ToArray());
48 context.Response.End();
49 }
50 catch
51 { }
52 finally
53 {
54 if(g != null )
55 g.Dispose();
56 img.Dispose();
57 }
58 }
59}
凡是有利必有害,这样做最大的缺点就是增加了系统开销,客户端的每一请求都要过滤一遍,性能自然要打折扣了。不知道哪位朋友有更好的办法,或者优化的方法,一起来探讨探讨。



http://www.cnblogs.com/nowind/archive/2007/01/16/622016.html







添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.