.Net Mobile Pages vs. ordinary .NET web page

.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.
.Net Mobile Forms
.Net Mobile Forms - .NET Mobile Forms are specialized Web forms which can work on various mobile devices. Each Mobile Page must have at least one mobile form.
.Net Mobile automatic paging
.Net Mobile automatic paging - .NET mobile supports automatic paging for a variety of mobile devices. Paging is handled differently for different controls...
Link element in .NET Mobile with example
Link element in .NET Mobile - The element enables a user to navigate between 2 forms in a page. Eg:.....
Post your comment