I have a HTML document with the following markup:
<LINK REL="STYLESHEET" HREF="c87d971ab8bc48ee87f9ced1b1d5c6e2.css" CHARSET="ISO-8859-1" TYPE="text/css">
I'd like a solution in C# that would change the CSS to (the CSS file name changes every time):
<LINK REL="STYLESHEET" HREF="other.css" CHARSET="ISO-8859-1" TYPE="text/css">
How do I do this in C#?