Ciao a tutti
ho messo questa sub per contare i caratteri presenti in una txtbox. Ho il valore solo quando perde il fuoco
*
Protected Sub txtBody_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtBody.TextChanged

Dim varValue As Integer = Len(txtBody.Text)
'Response.Write(varValue)
lblrisulta.text = varValue
End Sub
*
Ma vorrei avere il valore mentre scrivo nella txtbox in modo dinamico
C'è un metodo o un trucco per fare questo?