InterviewSolution
| 1. |
What Is .net Mobile Utility Controls. Explain With An Example? |
|
Answer» .NET mobile has a variety of utility complex controls: AdRotator: A control which displays different images one by one. Calendar: Standard calendar control for mobile devices. PHONECALL: Selects the NUMBER displayed and calls that number. EXAMPLE: Displays TEXT Mike’s Number, and dial the number (91) 1111-111 when the user selects the text. <%@ 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="(91) 1111-111" Text="Mike's number" AlternateFormat="{0}" /> </Mobile:Form> .NET mobile has a variety of utility complex controls: AdRotator: A control which displays different images one by one. Calendar: Standard calendar control for mobile devices. PhoneCall: Selects the number displayed and calls that number. Example: Displays text Mike’s Number, and dial the number (91) 1111-111 when the user selects the text. <%@ 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="(91) 1111-111" Text="Mike's number" AlternateFormat="{0}" /> </Mobile:Form> |
|