- 51Aspx源码必读.txt[1KB]
- UpgradeLog.htm[58KB]
- from.jpg[11KB]
- HttpHandlerDemoss.sln[3KB]
- 最新Asp.Net源码下载.url[123B]
源码介绍
源码参数
一、更新记录
1、更新日期:2023-07-17 00:00:00
2、更新内容:
Httphandler防盗链水印源码
源码描述:
源码是对httphandler的使用,示例源码包括增删改查的小例子,有防盗链,添加水印和全局水印的例子
防盗链代码片段
public void ProcessRequest(HttpContext context)
{
//格式
context.Response.ContentType = "image/jpeg";
Uri ur1= context.Request.Url;//访问服务器的页面的路径
//防止被调用的路径
Uri ur2= context.Request.UrlReferrer;
//判断地址的服务器和端口号是否一样
int ip=Uri.Compare(ur1, ur2, UriComponents.HostAndPort, UriFormat.Unescaped, StringComparison.CurrentCultureIgnoreCase);
string path = ur1.AbsolutePath;
if (ip != 0)
{
context.Response.Clear();
string path1 = context.Server.MapPath("/img/logo.jpg");
context.Response.WriteFile(path1);
context.Response.End();
}
context.Response.WriteFile(path);
}
下载记录(Only Recent 100)
用户名 | 推荐指数 | 下载时间 |
---|