I am trying to embed a .cur file as a resource into a web control library and then use it in a javascript file to to change my mouse cursor.
Everything looks fine and appears to work right up to the point where the cursor is changed. Only problem is the cursor doesn't change.
So here is the code:
Register the cursor as a resource (I am not sure a type of /cur is valid, but it appears to work for the most part). I will explain in just a bit why it seems to work
<Assembly: WebResource("MappingControls.Measure.cur",
"img/cur")>
...
Go to the complete details ...