J
Joel Finkel
Folks,
I have a form that has several TextBoxes, some of which have the TextMode set to MultiLine. Each is pre-loaded with data from a database. The user is allowed to modify each entry.
The problem is that only the modified data from the SingleLine TextBoxes are returned. The original data are returned for the MultiLine TextBoxes. Also, if the page is sent to the server (for validation, for instance), only the modified data for the SingleLine TextBoxes have been saved in the ViewState and are redisplayed correctly. The original data are re-displayed in the MultiLine TextBoxes.
Examination of the HTML code shows that the only difference in the declaration is the addition of these attributes:
Rows="4" TextMode="MultiLine"
I wonder if other people have run into the same problem or have any suggestions as to how to solve this problem.
Thanks in advance.
Joel Finkel
(e-mail address removed)
I have a form that has several TextBoxes, some of which have the TextMode set to MultiLine. Each is pre-loaded with data from a database. The user is allowed to modify each entry.
The problem is that only the modified data from the SingleLine TextBoxes are returned. The original data are returned for the MultiLine TextBoxes. Also, if the page is sent to the server (for validation, for instance), only the modified data for the SingleLine TextBoxes have been saved in the ViewState and are redisplayed correctly. The original data are re-displayed in the MultiLine TextBoxes.
Examination of the HTML code shows that the only difference in the declaration is the addition of these attributes:
Rows="4" TextMode="MultiLine"
I wonder if other people have run into the same problem or have any suggestions as to how to solve this problem.
Thanks in advance.
Joel Finkel
(e-mail address removed)