国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

asp.net下結(jié)合HttpHandler實現(xiàn)圖片防盜鏈

2024-07-10 12:42:09
字體:
供稿:網(wǎng)友
代碼如下:
#region IHttpHandler 成員

bool IHttpHandler.IsReusable
{
get { return true; }
}

void IHttpHandler.ProcessRequest(HttpContext context)
{
string FileName = context.Server.MapPath(context.Request.FilePath);
if (context.Request.UrlReferrer.Host == null)
{
context.Response.ContentType = "image/JPEG";
context.Response.WriteFile("/no.jpg");
}
else
{
if (context.Request.UrlReferrer.Host.IndexOf("mydomain.com") > 0)
{
context.Response.ContentType = "image/JPEG";
context.Response.WriteFile(FileName);
}
else
{
context.Response.ContentType = "image/JPEG";
context.Response.WriteFile("no/jpg");
}
}
}

#endregion

<httpHandlers>
<add verb="*" path="*.jpg" type="JpgHandler, MyDll" />
</httpHandlers>
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 许昌市| 万载县| 东光县| 文化| 罗城| 大姚县| 澳门| 卢氏县| 闵行区| 伽师县| 平江县| 卓尼县| 天长市| 鲁山县| 海阳市| 莱西市| 台东县| 波密县| 东源县| 连云港市| 咸丰县| 上犹县| 黄大仙区| 竹山县| 大埔区| 方山县| 灵石县| 封开县| 绵竹市| 宕昌县| 新竹县| 吉木萨尔县| 观塘区| 鹿邑县| 鄂托克旗| 长阳| 时尚| 大城县| 镇平县| 武定县| 陆良县|