I'm wondering if it possible to open a HTML Document to edit elements and attributes without the use of the WebBrowser class; I know how to use functions in HTML to do this, but unfortunately, I need the editing to occur as part of an add-in for another program (solidworks Enterprise PDM) which only allows the use of C# with NET 3.5.
I was thinking of using something like:
FileStream UpdateHTML = new FileStream(filepath, FileMode.Open, FileAccess.Write);
to give write access to html document, but I'm not sure if this is the correct path to be taking.