How do i add a new line character in a label content? I tried system.environment.newline and it doesn't work.
![]() |
0 |
![]() |
"<br/>"
Lolli
Don't forget to click "Mark as Answer" on the post that helped you. This credits that member, earns you a point and marks your thread as Resolved so we will all know you have been helped.
![]() |
0 |
![]() |
Hi,
try this
lbl1.Text = lbl1.Text+ "<br />"
![]() |
0 |
![]() |
Public Shared Function BrakeRow(ByVal _count As Integer) As LiteralControl Dim tmp As String = "" Dim i As Integer For i = 0 To _count - 1 tmp += "<br/>" Next Return New LiteralControl(tmp) End Function Public Shared Function non_breaking_space(ByVal _count As Integer) As LiteralControl Dim tmp As String = "" Dim i As Integer For i = 0 To _count - 1 tmp += " " Next Return New LiteralControl(tmp) End Functionval
http://www.montrealads.ca
http://www.whoiswho.ca
http://www.bluelabs.ca
![]() |
0 |
![]() |
How do I enter newline at designer?
<asp:Image ID="help" runat="server" ImageUrl="~/Images/home/ico_help.gif"
ToolTip="this is a verrry long tooltip this is a verrry long tooltip this is a verrry long tooltip this is a verrry long tooltip this is a verrry long tooltip "
AlternateText="Help" /> <br />
I want to put a newline on the tooltip ..
Thanks!
chillax
![]() |
0 |
![]() |