Mobile call Demo (VB.net) : Call « Mobile Control « ASP.Net






Mobile call Demo (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:Label 
        runat="server"
        id="lblTitle"
        StyleReference="title" 
        Text="Call Test Page"
    />
    <mobile:Call
        runat="server"
        id="Call1"
        Text="Call Home!"
        PhoneNumber="(222) 222-2222"
        AlternateURL="http://www.google.com"
        AlternateFormat="Call home {0} with this number: {1}"
    />
</mobile:Form>

           
       








Related examples in the same category