Developing a mobile web application with ASP.NET

Developing a mobile web application with ASP.NET is very easy.

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
.NET Mobile example with explanation
.NET Mobile example - Output for a WAP Enabled Mobile device, Output for a Pocket PC....
Describe .NET Mobile Emulators
.NET Mobile Emulators - Applications built using MMIT can be tested and viewed using a variety of emulators.....
.Net Mobile Pages vs. ordinary .NET web page
.Net Mobile Pages - .NET Mobile pages are similar to ordinary .NET Webpages. only difference being the tag.....
Post your comment