Mobile link field: alignment (VB.net) : Link « Mobile Control « ASP.Net






Mobile link field: alignment (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="Link Test Page"
    />
    <mobile:Link
        runat="server"
        id="Link1"
        Text="Click Here!"
        NavigateURL="http://www.google.com"
    />
    <mobile:Link
        runat="server"
        id="Link2"
        Text="Or Here!"
        NavigateURL="http://www.google.com"
        Font-Bold="True"
        Font-Size="Large"
        Alignment="Right"
    />
</mobile:Form>

           
       








Related examples in the same category

1.Set form address for mobile link navigational url (VB.net)
2.mobile Link: url and text (VB.net)