.Net Mobile Pages vs. ordinary .NET web page
.NET Mobile pages are similar to ordinary .NET Webpages.
<%@ Page Inherits="System.Web.UI.MobileControls.MyPage" %>
<%@ 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>
Notice the only difference being the tag mob which uses the System.Web.UI.MobileControls library instead of the asp tag.