<%@ Register TagPrefix="mob" Name..." /> What Is The Difference Between .Net Mobile Pages And Ordinary .NET Web Page? <%@ Register TagPrefix="mob" Name..." /> <%@ Register TagPrefix="mob" Name..." />
Answers

Question and Answer:

  Home  .Net Mobile

⟩ What is the difference between .Net Mobile Pages and 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.

 193 views

More Questions for you: