首页 > 代码库 > 学习笔记18_防盗链操作

学习笔记18_防盗链操作

*盗链:就是别人使用自己的网站的url作为超链接

在Global.asax中,

protect void Application_BeginRequest()

{

   if(Request.UrlRefer==null||UrlCompare( Request.UrlRefer, Request.Url, UriComponents.HostAndPort, UriFormat.StateUnescaped,StringComparison.CurrentCultureIgnoreCase ))

  {

    Respone.End();

  }

}

学习笔记18_防盗链操作