为什么不进入RouteHandler?

时间:2016-10-13 04:11:39

标签: asp.net-mvc iroutehandler

我正在尝试编写一个关于“防止图像搜索”的演示, 参考资源:http://www.mikesdotnetting.com/article/126/asp-net-mvc-prevent-image-leeching-with-a-custom-routehandler

但是当我使用<img src="~/graphics/a.png" />时,ImageRouteHandler.cs将无效。 不幸的是,这个ImageRouteHandler.cs还不行。 为什么??

public class ImageRouteHandler : IRouteHandler
{
    public IHttpHandler GetHttpHandler(RequestContext requestContext)
    {
        return new ImageHandler(requestContext);
    }
}

public class ImageHandler : IHttpHandler
{
    public ImageHandler(RequestContext context)
    {
        ProcessRequest(context);
    }

    private static void ProcessRequest(RequestContext requestContext)
    {
        var response = requestContext.HttpContext.Response;
        var request = requestContext.HttpContext.Request;
        var server = requestContext.HttpContext.Server;
        var validRequestFile = requestContext.RouteData.Values["filename"].ToString();
        const string invalidRequestFile = "thief.png";
        var path = server.MapPath("~/graphics/");

        response.Clear();
        response.ContentType = GetContentType(request.Url.ToString());

        if (request.ServerVariables["HTTP_REFERER"] != null &&
            request.ServerVariables["HTTP_REFERER"].Contains("http://localhost:8010/")) //mikesdotnetting.com
        {
            response.TransmitFile(path + validRequestFile);
        }
        else
        {
            response.TransmitFile(path + invalidRequestFile);
        }
        response.End();
    }

    private static string GetContentType(string url)
    {
        switch (Path.GetExtension(url))
        {
            case ".gif":
                return "Image/gif";
            case ".jpg":
                return "Image/jpeg";
            case ".png":
                return "Image/png";
            default:
                break;
        }
        return null;
    }

    public bool IsReusable
    {
        get
        {
            return true;
        }
    }

    public void ProcessRequest(HttpContext context)
    {
        throw new NotImplementedException();
    }
}

1 个答案:

答案 0 :(得分:0)

~在网址中不是有意义的前缀。有时在某些ASP.NET上下文(如Server.MapPath)中使用它来引用应用程序根目录,但在HTML中使用此URL:

<img src="~/graphics/a.png" />

...无效。

在开头使用/来引用您网站的根目录,或省略引导/以引用相对网址。目前尚不清楚这是否是您遇到的唯一问题,但它是一个问题。你可能会有更好的运气:

<img src="/graphics/a.png" />

顺便提一下,请注意开发人员工具的网络标签;这将让您看到所有请求(如您的图像请求)和响应。说它&#34;将不起作用&#34;或类似的没用。事情永远不会“不能工作”#34;他们只是做了一些你期望的事情。更好的描述是&#34;我得到404错误&#34;或者&#34;我的图像请求未被制作。&#34;