Im using Asp.Net and VB on Visual Studio 2010

Hi, i am using a System.Web.UI.WebControls.TextBox with the wrap property set to "true", my problem is that when it wraps a word, it moves the whole word to the next line, what i want to accomplish is for the textbox to wrap, but not move the whole word, just move to the new line when the text reaches the right side of the textbox.

Example, imagine a textbox 10 chars wide.

This is what happens:

0123456789  
i am a  
textbox 

This is what i need:

0123456789  
i am a tex  
tbox

But if i set the wrapping to false, it just will keep expanding the width of the textbox on the same line.

I was thinking of setting the wrap to false, and use the onTextChanged event to check the length of the text and manually trigger the new line. is there any easier way to acomplish this?

Thanks a lot!

link|improve this question

1  
Not possible. The ASP.NET text box control is just a wrapper for the standard HTML textarea tag, which doesn't offer the kind of explicit formatting you need. Suggestion would be to format the output before sending it to the control using a fixed line width and hard line breaks (\n) – Chris May 19 '11 at 18:55
feedback

1 Answer

up vote 1 down vote accepted

This is a web browser implementation issue rather than something that can be accomplished with ASP.NET.

The only way to control that, theoretically, would be to run JavaScript on the client end, but the route would require some heroics. You'd need to

  1. Have the JS calculate the length of the text entered
  2. Have the JS keep the original value of the text in a hidden INPUT field with some sort of line separator (i.e., "i am a tex<LINEBREAK>tbox"), that way you can discern real linebreaks from the user with the linebreaks that the JS puts in to chop off the end of the line
  3. On submitting the form, don't use what's in the actual textbox but rather what's in the hidden INPUT field, with the <LINEBREAK>s replaced with empty strings.

But all of the above would require an enormous amount of effort, lots of testing across the various browsers, and breaks some of the built-in ASP.NET stuff (i.e., not using the contents of a textbox but rather a client side INPUT).

link|improve this answer
So i guess it won't be worth the effort... Thanks for the advice! – Jhurtado May 19 '11 at 21:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.