|
|
ASP.NET Mobile Control: ObjectList Control
Category:
ASP.NET
By: - June 12th, 2009
This article has been read: 122 times.
|
|
The details you can find in the MSDN document:
MSDN: Object Control
You can also download the Microsoft Mobile Explorer Emulator. here
( Microsfot Mobile Explorer 3.0 Emulator - Preview content for MME multi-statndard mobile phone browser.)
The code example for ASP.NET Mobile control: "ObjectList"
<%@ Page Inherits= "System.Web.UI.MobileControls.MobilePage"
Language="VB" %>
<%@ Register TagPrefix="mobile"
Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
LabelField="item"
OnItemCommand="List1_Click">
text="Sale item reservation system coming soon!" />
text="Online purchasing system coming soon!" />
text="Detailed descriptions of the items will be here soon!" />
[C#]
<%@ Page Inherits= "System.Web.UI.MobileControls.MobilePage"
Language="C#" %>
<%@ Register TagPrefix="mobile"
Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
LabelField="item"
OnItemCommand="List1_Click">
text="Sale item reservation system coming soon!" />
text="Online purchasing system coming soon!" />
text="Detailed descriptions of the items will be here soon!" />
Notes: (other resource for ASP.NET Mobile Web application
- How to make ASP.NET Applications that support mobile devices.
[Details]
- .NET Mobile Tutorial
[Details]
- Getting Started with Windows Mobile Application Development [Details]
- Tip/Trick: ASP.NET Mobile Development with Visual Studio 2008 [Details]
|
Back to News Articles
View Articles From ASP.NET Category
|
|