开发者

Text Area size in asp.net

Can any tell me what is max size of text area control in asp.net...? Iam facing problem that this text area only takes 1000 characters my colum开发者_如何学编程n size is 5000 and in SP that varible size is varchar(2000) still in tables it saves only 1000 characters.. what would be the problem..?


There is no maximum size mentioned at MSDN TextBox or MSDN TextArea. Put a breakpoint in code behind to see whether the application server receives the whole string. If the code behind gets the whole string, then there is a problem between IIS and the DB server. If you don't receive the whole string, make sure the form is submitted through the POST method; supplementary, try a ViewState chunking.

Additionally: install smthing like fiddler and verify the content that is sent from the browser to the server. Fiddler allows you to inspect the communication between the browser and the server.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜