Results 1 to 6 of 6

Thread: What are the .NET Mobile Utilities ?

  1. #1
    Join Date
    Nov 2009
    Posts
    75

    What are the .NET Mobile Utilities ?

    I have been assigned a case study to be prepared on .NET Mobile Utilities. I have to prepare this within three days. I have no idea of this concept. This is the first time I have ever heard of this concept. Can any one explain to me .NET Mobile Utilities and the related program of .NET Mobile Utilities. I also need a short description on .NET Mobile Images as well.

  2. #2
    Join Date
    May 2008
    Posts
    2,389

    .NET Mobile Utilities

    The basic function of .net mobile utilities is to provide support to user interfaces which are complicated by making the minimum code. One such utility is of .net mobile utilities is the AdRotator Control. Here is an example of AdRotator Control:
    Code:
    <%@ Page
    Inherits=
    "System.Web.UI.MobileControls.MobilePage"%>
    <%@ Register
    TagPrefix="Mobile"
    Namespace="System.Web.UI.MobileControls"
    Assembly="System.Web.Mobile" %>
    
    <Mobile:Form runat="server">
    <Mobile:AdRotator runat="server"
    AdvertisementFile="adfilm.xml">
    </Mobile:AdRotator>
    </Mobile:Form>

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    PhoneCall Control

    I also had a similar assigned which I prepared for the topic Microsoft Mobile Internet Toolkit (MMIT).
    Code:
    <%@ Page
    Inherits=
    "System.Web.UI.MobileControls.MobilePage"%>
    <%@ Register
    TagPrefix="Mobile"
    Namespace="System.Web.UI.MobileControls"
    Assembly="System.Web.Mobile" %>
    
    <Mobile:Form runat="server">
    
    <Mobile:PhoneCall runat="server"
    PhoneNumber="(022) 12345678"
    Text="Ram's contact"
    AlternateFormat="{0}" />
    </Mobile:Form>
    The above code will display the the dialed number with the text as 'Ram's contact'.

  4. #4
    Join Date
    Jan 2008
    Posts
    1,521

    The Image Control

    .net mobiles have the feature to display images of different types for different devices. The reason being that capabilities for display are variable with each mobile. Thus the developer needs a way to declare different types of images for a variety of devices. For this the Image Control is used for .net mobiles.

  5. #5
    Join Date
    May 2008
    Posts
    2,297

    Microsoft Mobile Internet Toolkit (MMIT) Image control

    Following is an example for the Image Control with Microsoft Mobile Internet Toolkit (MMIT):
    Code:
    <%@ Page
    Inherits=
    "System.Web.UI.MobileControls.MobilePage"%>
    <%@ Register
    TagPrefix="Dot Net Mobile"
    Namespace="System.Web.UI.MobileControls"
    Assembly="System.Web.Mobile" %>
    
    <Mobile:Form runat="server">
    <Mobile:Image runat="server">
      <DeviceSpecific>
        <Choice ImageURL="img1.gif" />
        <Choice ImageURL="img3.wbmp" />
        <Choice ImageURL="img2.bmp" />
      </DeviceSpecific>
    </Mobile:Image>
    </Mobile:Form>
    This will help you to display an image in the .Net framework Mobile.

  6. #6
    Join Date
    Apr 2008
    Posts
    2,005

    Calendar Control for .NET Mobile Utilities

    I had designed a calender to be displayed in the mobile phone which supports .Net framework. I also had hard time coding this topic as there is not much information available. Here is how I coded the application:
    Code:
    <%@ Page
    Inherits=
    "System.Web.UI.MobileControls.MobilePage"%>
    <%@ Register
    TagPrefix="Mobile"
    Namespace="System.Web.UI.MobileControls"
    Assembly="System.Web.Mobile" %>
    
    <script runat="server">
    
    Sub CalChanged(sender as Object,e as EventArgs)
    lab1.Text="The Selected option is:" & c1.SelectedDate
    ActiveForm=f2
    End Sub
    
    </script>
    
    <Mobile:Form id="form1" runat="server">
    <Mobile:Calendar id="cal1"
      OnSelectionChanged="CalChanged" runat="server" />
    </Mobile:Form>
    
    <Mobile:Form id="form2" runat="server">
    <Mobile:Label id="l1" runat="server" />
    </Mobile:Form>

Similar Threads

  1. Best Windows Mobile Office Utilities apps
    By Orton in forum Portable Devices
    Replies: 1
    Last Post: 21-04-2011, 06:43 PM
  2. Top 10 Windows Mobile Utilities Applications
    By Orton in forum Portable Devices
    Replies: 1
    Last Post: 21-04-2011, 06:34 PM
  3. iPhone utilities for iOS 3.1.3
    By Nuronex in forum Portable Devices
    Replies: 4
    Last Post: 08-11-2010, 10:52 AM
  4. What is FRS and its Utilities
    By DanielV in forum Technology & Internet
    Replies: 3
    Last Post: 27-06-2009, 05:18 PM
  5. Some useful system utilities
    By Joachim in forum Guides & Tutorials
    Replies: 1
    Last Post: 12-05-2008, 02:56 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,876,314.57208 seconds with 16 queries