tags:

views:

50

answers:

0

I am trying to capture the .WMV file using the HttpHandler but for some reason the HttpHandler never gets fired:

<a href="http://www.somewebsite.com/videos/somevideo.wmv"&gt;

    play the video   


    </a>

I have configured the handler in the web.config file as shown below: This editor is not allowing me to paste the web.config file!!

I have tried debugging but the handler never gets hit!

public class WMVHandler : IHttpHandler
    {


        public bool IsReusable
        {
            get { return false; }
        }

        public void ProcessRequest(HttpContext context)
        {

        }


    }