Problem that I am trying to resolve:
I want to convert a word document into HTML and along with that I want to convert specific text into Hyperlinks. I can't find a way in C# to add hyperlinks before saving the word document as HTML. So, I do the trick I save document as HTML and then read the HTML document and replace the specific text with hyperlink.
I don't know if that is the best way to do it but so far I didn't find any other option.
Now the problem is that when I read the HTML file, I got garbage characters for some special characters. In my word document I have "..." three dots which I think is a special character in word, so when I read that in HTML I got garbage letters... The strange thing is that when I open that HTML file in notepad it shows me correctly.
However, through coding i am not able to read such characters.
Please help me.