I have a web application with a multiline textbox as an input field, however it appears that the data is being restricted to 2048 characters in the code-behind.
According to MSDN thats not expected, as it says:
For multiline text box controls, the maximum number of characters the user can enter is 4294967295 or an amount based on available memory, whichever is smaller.
However, the Textbox.text property is truncated to 2048 characters. Most of my searching for answers is people asking how to restrict the length on a multiline textbox but I'm having the opposite issue - I don't want the text restricted to 2048 (it will be restricted but more text is supposed to be allowed than 2048 characters).
Apologies if I'm missing something obvious, any input would be appreciated.
Thanks.