Mega Code Archive

 
Categories / ASP.Net / Mobile Control
 

Difference between mobile textview and label for HTML code (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="lblTitle"         StyleReference="title"          Text="Title Text Style"     />     <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>