Mega Code Archive

 
Categories / ASP.Net / Mobile Control
 

Add hyperlink item to mobile list (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="StartForm"      runat="server"> <mobile:list     runat="server"      id="list1"     decoration="Numbered"     itemsaslinks="True" >     <item          value="http://www.rntsoft.com"         text="rntsoft"     />     <item          value="http://www.yahoo.com"         text="Yahoo"     />     <item          value="http://www.microsoft.com"         text="Microsoft"     /> </mobile:list> </mobile:form>