Mobile Capabilities: support color? (VB.net) : Mobile Capabilities « Mobile Control « ASP.Net






Mobile Capabilities: support color? (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">
Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    Dim MyMobCaps as Mobile.MobileCapabilities
    MyMobCaps = Request.Browser
    If MyMobCaps.IsColor Then
        Image1.ImageURL="color.gif"
    Else
        Image1.ImageURL="nocolor.gif"
    End If
End Sub
</script>
<mobile:Form id="Test" runat="server">
    <mobile:Image 
        runat="server" 
        id="Image1"
        AlternateText="Your device does not support graphics!">
    </mobile:Image>
</mobile:Form>

           
       








Related examples in the same category

1.Get mobile device information (VB.net)
2.Get mobile device code Capabilities (VB.net)
3.Get mobile device screen width and height (VB.net)
4.Mobile Capabilities
5.Preferred RenderingType