mobile Image with alternative text (VB.net) : Image « Mobile Control « ASP.Net






mobile Image with alternative text (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:Image 
        runat="server" 
        id="Image1"
        alternatetext="Your device does not 
            support graphics!"
        alignment="right"
        navigateurl="http://www.java2s.com"
        imageurl="http://www.java2s.com/style/logo.png"
    />
</mobile:Form>

           
       








Related examples in the same category