...Media player wouldn't launch.
To combat this, I created an httphandler and added this entry in my web.config:
<httpHandlers>
<add verb="*" path="*.wmv" type="MyNamespace.MyFileHandler, MyFileHandler"/>
...
</httpHandlers>
Now, whenever the user clicks on a .mwv link, the code in my...