Reading a multiline TextBox
-
Hi all, I have a multiline text box . I wan`t the user entered data to be filled in a single column of the table.But since the user can enter more than one line (by pressing enter or wrap i suppose). It gives me an error that the data would be truncated. How should i enter the entire data in DB? Also while reading i need to read it as a ordered list..How can we do that? Any help would be highly appreciated
-
Hi all, I have a multiline text box . I wan`t the user entered data to be filled in a single column of the table.But since the user can enter more than one line (by pressing enter or wrap i suppose). It gives me an error that the data would be truncated. How should i enter the entire data in DB? Also while reading i need to read it as a ordered list..How can we do that? Any help would be highly appreciated
from the error it you are trying to save data that is larger than the allowed size in database. So either restrict the user to enter data for allowed size or increase the size in database.
newbie.net wrote:
Also while reading i need to read it as a ordered list..How can we do that?
what you mean by "you want to read it as ordered list"?
-----