You can check how many characters will be submitted using the following JavaScript code. This code assumes that you've called the SetName function on your DevEdit control, and have given it a name of myDevEditControl:
alert(document.getElementById('myDevEditControl_html').value.length);"
This will give you the number of characters that will be sent by the editor. If you place the following code inside your submit button it will tell you the number of characters before it submits.
onClick="alert(document.getElementById('myDevEditControl_html').value.length);"

The article has been updated successfully.