I have embedded a javascript library, some CSS and some images into a class library as embedded resources.
I have created custom controls to access both the javascript and the CSS, but within the CSS, there are certain parts that use background images that are referenced via url(../../img/img.png)
. How would i handle these requests?
P.S. i have already thought about writing a IHttpHandler
to capture and redirect these requests, but i would rather not have to edit web.config further to achieve this.