I have a C# code behind file that gets dynamically generated HTML from a server and converts it to a PDF. In the HTML there are <link rel="stylesheet"> elements that reference external stylesheets as well as many <img> tags.
All of these files, images and stylesheets, come from www.example.com, and I'm trying to make all elements come from static.example.com with the same url instead. I've used the obvious stringName.Replace("www.example.com","static.example.com") to replace the elements in the HTML, but is there any way to do so for the references in the CSS file?
FOR EXAMPLE:
background-image:url('www.example.com/bg.png');
needs to become
background-image:url('static.example.com/bg.png');
in the external file.
Any ideas on approach? Creativity is welcome; I'm up for anything!
Thanks :)
/path/to/file.pngurl is the same on each server, btw.