Microsoft .Net Mobile Question:
Download Questions PDF

Explain is development of a mobile web application with ASP.NET is very easy?

.Net Mobile Interview Question
.Net Mobile Interview Question

Answer:

Developing a mobile application is as simple as building any website using ASP.NET. The only difference being the tags of the form i.e.

Normal ASP.NET Webpage

<asp:Form runat="server">
<asp:Label runat="server">Hello World</asp:Label>
</asp:Form>

For Mobile

<%@ Register TagPrefix="mob" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

<mob:Form runat="server">
<mob:Label runat="server">Hello World</mob:Label>
</mob:Form>

MMIT takes care of all the mobile device requirements. Thus, the developer is free from such concerns

Download .Net Mobile Interview Questions And Answers PDF

Previous QuestionNext Question
Explain how to develop mobile applications using Microsoft Mobile Internet Toolkit (MMIT) or .NET Mobile?Explain the components required to develop mobile applications with .NET Mobile?