How do I count number of characters into webbrowser control C#?
Using a webbrowser control. I'd like to count the number of characters into webbrowser, just like textchange of Textbox class. I just want to count the number of characters in the text that display WebBrowser no html, no images, etc.Any idea about how simulate the behavior of textbox which trigger when change text displayed? Thanks I'm developing Winforms in C#. No ASP.NET. Add the following class: using System.Text.RegularExpressions; namespace CK.TicketSystem.Shared { public static class HtmlUtils { public static bool IsHtmlFragment(string value) { return Regex.IsMatch(value, @""); } ///