Set selected item in a mobile selectionlist (VB.net) : SelectionList « Mobile Control « ASP.Net






Set selected item in a mobile selectionlist (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:selectionlist
    runat="server" 
    id="sl1"
    selecttype="Radio"
>
    <item selected text="A"/>
    <item text="B"/>
    <item text="C"/>
</mobile:selectionlist>
</mobile:form>
           
       








Related examples in the same category

1.mobile selectionList Demo (ComboBox) (VB.net)
2.mobile:SelectionList (VB.net)
3.Bind data to mobile selectionlist (VB.net)