Mobile calendar selection mode (VB.net) : Calendar « Mobile Control « ASP.Net






Mobile calendar selection mode (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="FirstPage" 
    runat="server">
    <mobile:calendar  
        id="cal1"
        selectionmode="DayWeekMonth"
        runat="server"
    />
</mobile:form>

           
       








Related examples in the same category

1.Get Mobile calendar selected date (VB.net)
2.Mobile date selection changed event (VB.net)
3.Simplest mobile calendar (VB.net)