Click here to Skip to main content
15,886,873 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
I am developing a website in asp.net in which I am using a textbox and label when i write in textbox continously without space and on button click it is showed i label then it shows continous singleline & goes out of the label width.I want to show this text in new line before the text goes out of label width.But actually i want dispaly html tag also
Posted
Updated 7-May-12 20:33pm

Use the Wrap property[^].

You can set the MultiLine property along with it to allow text to break into the next line.

E.g. <asp:TextBox Wrap="True" TextMode="MultiLine" runat="server"/>
 
Share this answer
 
Comments
VJ Reddy 13-May-12 21:04pm    
Good answer. 5!
Abhinav S 14-May-12 1:57am    
Thank you VJ.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900