Mega Code Archive

 
Categories / ASP.Net / Mobile Control
 

Mobile textview supports HTML (VB net)

<%@ Page      Inherits="System.Web.UI.MobileControls.MobilePage"      Language="VB"  %> <%@ Register      TagPrefix="mobile"      Namespace="System.Web.UI.MobileControls"      Assembly="System.Web.Mobile"  %> <script runat="server" language="VB"> </script> <mobile:Form id="Test" runat="server">     <mobile:label          runat="server"         id="lblError"         alignment="Center"          text="The word <B>bold</B> is not in bold."     />     <mobile:textview          runat="server"         id="tvTextr"         text="The word<BR><B>bold</B><BR>is in bold."     /> </mobile:Form>