Does anyone remember an AjaxControlToolkit control named AjaxControlToolkit:TextBoxCounter (cc1:TextBoxCounter)? I have some old code from 2010 that I used to show a user how many characters they had left in a character limited textbox. Here's an example:
<cc1:TextBoxCounter runat="server" TreatCarriageReturnsAsOneCharacter = "true" ID="TextBoxCounter2" TextBoxControlId="TextBox7" DataFormatString="There are {5} characters allowed: {3} are remaining" MaxCharacterLength="250" CssClass="DefaultTextBoxCounterStyle" CssClassForMax="MaxTextBoxCounterStyle" CssClassForWarning="WarningTextBoxCounterStyle" WarningPercentage="75" />It used to work great but it must be deprecated because I can't find a trace of it anymore. Does anyone know what takes its place? I have been out of .NET since 11/2010 and I'm now jumping back into it.
Thanks.