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.java2s.com"
text="java2s"
/>
<item
value="http://www.yahoo.com"
text="Yahoo"
/>
<item
value="http://www.microsoft.com"
text="Microsoft"
/>
</mobile:list>
</mobile:form>
Related examples in the same category