How to ReadHtmlFile in string
class of reading HTML file ----------------------------------------------------------------------------------------------------------------------- public static System.Text.StringBuilder ReadHtmlFile(string htmlFileNameWithPath) { System.Text.StringBuilder htmlContent = new System.Text.StringBuilder(); string line; try { using (System.IO.StreamReader htmlReader = new System.IO.StreamReader(htmlFileNameWithPath)) { while ((line = htmlReader.ReadLine()) != null) { htmlContent.Append(line); } ...