Blue Theme Orange Theme Green Theme Red Theme
 
Discover the top 5 tips for understanding .NET Interop
Home | Forums | Videos | Photos | Blogs | Beginners | Advertise with Us
 | Consulting  
Submit an Article Submit a Blog 
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
Discover the top 5 tips for understanding .NET Interop
Search :       Advanced Search »
Home » VB.NET » Adding Text directly to Mobile Web Forms

Adding Text directly to Mobile Web Forms

We have seen in previous articles how to develop Mobile Web Forms using the Microsoft Mobile Internet Toolkit. We can make use of the Mobile Web Forms controls to add controls which will be rendered on the client side and also have a server side object representation.

Author Rank :
Page Views : 6784
Downloads : 0
Rating :
 Rate it
Level : Beginner
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
 
Mindcracker MVP Summit 2012
Become a Sponsor
Become a Sponsor
 Tag Cloud
 Latest Jobs
More ... 
 Latest Interview Questions
More ... 

We have seen in previous articles how to develop Mobile Web Forms using the Microsoft Mobile Internet Toolkit. We can make use of the Mobile Web Forms controls to add controls which will be rendered on the client side and also have a server side object representation. The controls provide a big spectrum of UI functionality on varied target devices and expose properties methods and events in the server side object model.

However, in simple cases, we may need to just add some plain text and basic markup to the Mobile Web Form - content which does not require any server side manipulations. In this case, we can directly add the literal text to the Mobile Web Form. The Mobile Web forms support a very limited number of literal markup tags directly specified on the web form, namely, <a>, <b>, <br>, <i> and <p> . The tags specified in the literal text may get converted to another format and if the literal text between two controls contains only white space, it will be ignored. To introduce a break between two controls using literal text, use "&nbsp;" in addition to the white space.

The Mobile Internet Controls Runtime generates a LiteralText control to represent the literal text in the control tree. You must keep this in mind when you are accessing controls programmatically.

Let's take a look at a simple example of using literal text within a Mobile Form.


Figure: Sample - Using literal text within Mobile Web Forms.

Complete Code Listing

MobileWebForm1.aspx

<%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" %>
<%@ Page language="VB" Codebehind="MobileWebForm1.aspx.vb" Inherits="mobweb01.MobileWebForm1" AutoEventWireup="false" %>
<meta name="GENERATOR" content="Microsoft Visual Studio 7.0">
<meta name="CODE_LANGUAGE" content="VB">
<meta name="vs_targetSchema" content=
http://schemas.microsoft.com/Mobile/Page>
<body Xmlns:mobile="
http://schemas.microsoft.com/Mobile/WebForm">
<mobile:Form id="Form1" runat="server">
<B>Literal Text Example for Mobile Web
Forms</B>&nbsp;<br />
<p>This example shows how to add literal text within mobile forms. Go to <A href="www.microsoft.com/mobile/pocketpc/default.asp">Microsoft Pocket Pc Web
Site</A>. </p>&nbsp;<p>
<I>Next read the instructions carefully.</I>
</p>Please Enter your Name:
<mobile:TextBox id="Name" runat="server"></mobile:TextBox>
</mobile:Form>
</body>

NOTE: This article is purely for demonstration. This article should not be construed as a best practices white paper. This article is entirely original, unless specified. Any resemblance to other material is an un-intentional coincidence and should not be misconstrued as malicious, slanderous, or any anything else hereof.

Conclusion:

We have seen in this article how to add text and basic html markup elements directly to Mobile Web Forms with simple requirements. You can mix the use of literal text and Mobile Web controls to provide a convenient interface for your mobile web sites.

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.
Login to add your contents and source code to this article
 [Top] Rate this article
 
 About the author
 
Dipal Choksi
Dipal Choksi has over 10 years of industry experience in team-effort projects and also as an individual contributor. She has been working on the .Net platform since the beta releases of .Net 1.0.
Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Discover the top 5 tips for understanding .NET
Ricky Leeks presents the top 5 tips for understanding .NET Interoperability. Learn more.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
 
 Post a Feedback, Comment, or Question about this article
Subject:
Comment:
Mindcracker MVP Summit 2012
Become a Sponsor
 Comments
DATA ACCESING USING MOBILE by kali On January 31, 2006
HOW CAN I VIEW THE DATA STORED IN THE DATABASE BY MOBILE PHONE USING VBDOTNET VERSION 2003.
Reply | Email | Modify 
Discover the top 5 tips for understanding .NET Interop
 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.