User1405629129 posted
Hi,
I wrote code in code behind and tried to output few sentences mixed with <br /> tags through a label mobile control. Somehow when I viewed it on mobile browser, it just showed exact <br /> on screen. I found that <br /> was
automatically escaped. Does anyone know how to solve it?
Here is my code in aspx.vb:
1 lblMessage.Text = "Hello " & _
2 "<br /> world!"
3
And my code in aspx:
1 <mobile:Label ID="lblMessage" runat="server" />
Your help will be appreciated! Many thanks!
Cheers,