DeviceSpecific.Choices Property

 

Retrieves the collection of choices in a <DeviceSpecific> element. This API is obsolete. For information about how to develop ASP.NET mobile applications, see the www.asp.net/mobile Web site.

Namespace:   System.Web.UI.MobileControls
Assembly:  System.Web.Mobile (in System.Web.Mobile.dll)

<BrowsableAttribute(False)>
<PersistenceModeAttribute(PersistenceMode.InnerDefaultProperty)>
Public ReadOnly Property Choices As DeviceSpecificChoiceCollection

Property Value

Type: System.Web.UI.MobileControls.DeviceSpecificChoiceCollection

The collection of choices in a <DeviceSpecific> element.

At run time, the choices in the collection are evaluated in the order that they are stored. For more information about choice and device-specific concepts, see the <Choice> element.

The following code example demonstrates the use of the Choices property to display the number of templates contained in the first filter defined in the ASP.NET mobile Web application. For a more complete code sample, see the example for the DeviceSpecific overview.

System_CAPS_noteNote

The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information, see ASP.NET Web Forms Page Code Model.

Public Sub Page_Load(ByVal source As Object, ByVal e As EventArgs)
    If Panel1.IsTemplated Then
        Dim txt As String = "Loaded panel has {0} Templates for a Filter named {1}."
        Dim TemplateCount As Integer = _
            Panel1.DeviceSpecific.Choices(0).Templates.Count
        Dim FilterString As String = _
            Panel1.DeviceSpecific.Choices(0).Filter.ToString()
        Label1.Text = _
            String.Format(txt, TemplateCount, FilterString)
    Else
        Label1.Text = "Loaded panel does not have Templates"
    End If
End Sub

.NET Framework
Available since 1.1

DeviceSpecific Class
System.Web.UI.MobileControls Namespace
Introduction to the DeviceSpecific Control
<DeviceSpecific> Element
<Choice> Element

Return to top
Show: