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">
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)
{
}
}