.NET Mobile Example
The Mobile ASP.NET Page
Mobile Controls are the main building blocks of mobile applications.
Mobile Controls are
similar to Web Controls in ASP.NET.
The following ASP.NET page displays "Hello W3Schools" as a WML card in a WML
enabled cell phone:
<%@ Page
Inherits="System.Web.UI.MobileControls.MobilePage" %>
<%@ Register
TagPrefix="mob"
Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
<mob:Form runat="server">
<mob:Label runat="server">Hello W3Schools</mob:Label>
</mob:Form>
|
The Page directive tells ASP to use (inherit) mobile page handling instead of
regular page handling (like the one used for traditional browsers).
The Register directive defines the prefix that will be used for mobile controls. We have
used "mob", but you can use any prefix you like.
The <mob:Form> element tells the server to create a mobile form control.
The <mob:Label> element tells the server to create a mobile label control with
the text "Hello W3Schools".
When the ASP .NET page executes, it will produce the following output to a WAP enabled
mobile phone:
<?xml version='1.0'?>
<!DOCTYPE wml PUBLIC
'-//WAPFORUM//DTD WML 1.1//EN'
'http://www.wapforum.org/DTD/wml_1.1.xml'>
<wml>
<card>
<p>Hello W3Schools</p>
</card>
</wml>
|
and this output will be produced for a Pocket PC:
<html>
<body>
<form id="ctrl1" name="ctrl1" method="post"
action="example.aspx">
<div>Hello W3Schools</div>
</form>
</body>
</html>
|
Conclusion
.NET Mobile will generate WML code for WAP enabled cell
phones and HTML code for devices like the Pocket PC.
By detecting the browser, .NET Mobile will output correct content, providing
developers with a powerful tool to develop single applications that will serve
many different mobile devices.
Whether you're new to XML or already an advanced user, the user-friendly views
and powerful entry helpers, wizards, and debuggers in XMLSpy are designed to
meet your XML and Web services development needs from start to finish.
- XML editor
- Graphical XML Schema / DTD editors
- XSLT 1.0/2.0 editor, debugger, profiler
- XQuery editor, debugger, profiler
- Support for Office Open XML (OOXML)
- Graphical WSDL editor & SOAP debugger
- Java, C#, C++ code generation
- And much more!
Download a free 30-day trial today!
Click to see a demo!
Learn what’s new in v2008
 |
|
Get Your Diploma!
W3Schools' Online Certification Program is the perfect solution for busy
professionals who need to balance work, family, and career building.
The HTML Certificate is for developers who want to document their knowledge of HTML, XHTML, and CSS.
The ASP Certificate is for developers who want to document their knowledge of ASP, SQL, and ADO.
|
|