I know that the MaxLength property doesn’t apply to System.Web.UI.WebControls.Textbox control in MultiLine mode. But what is the maximum amount of characters I can type in the textbox?
It seems to be 1000 characters, but I can’t find this documented anywhere.
I am not asking on how to limit the number of characters in the textbox control.
Thanks.
There is no upper limit to the number of characters in a WebControls.Textbox in multiline mode. The only limits are total post data from a form and that depends on your web-servers set-up (I presume IIS) which I think is about 2mb by default in IIS but don’t quote me on that.
What is happening when you try to type beyond 1000 charatcters?