Post to Mobile:form : Form « Mobile « ASP.NET Tutorial

Home
ASP.NET Tutorial
1.ASP.Net Instroduction
2.Language Basics
3.ASP.net Controls
4.HTML Controls
5.Page Lifecycle
6.Response
7.Collections
8.Validation
9.Development
10.File Directory
11.Sessions
12.Cookie
13.Cache
14.Custom Controls
15.Profile
16.Configuration
17.LINQ
18.ADO.net Database
19.Data Binding
20.Ajax
21.Authentication Authorization
22.I18N
23.Mobile
24.WebPart
25.XML
ASP.NET Tutorial » Mobile » Form 
23.3.2.Post to Mobile:form
<%@ Page Inherits="System.Web.UI.MobileControls.MobilePage" Language="VB" %>
<%@ Register TagPrefix="Mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

<script runat="server">
   sub btnAction(Sender as Object, e as EventArgs)
      lblMessage.Text = "Transaction:"
      lblNumber.Text = tbNumber.Text
      lblAmount.Text = tbAmount.Text
      
      ActiveForm = frmThanks
   end sub
</script>

<Mobile:Form runat="server">
   <Mobile:Label runat="server" StyleReference="title" 
      Text="Pay Bill" />
   <Mobile:Label runat="server" Text="CC #" />
   <Mobile:TextBox runat="server" id="tbNumber" />
   <Mobile:Label runat="server" Text="Amount $" />
   <Mobile:TextBox runat="server" id="tbAmount" />
   <Mobile:Command runat="server" id="btSubmit" 
      OnClick="btnAction"
      Text="Pay Bill!" />
</Mobile:Form>

<Mobile:Form runat="server" id="frmThanks">
   <Mobile:Label runat="server" id="lblMessage" />
   <Mobile:Label runat="server" id="lblNumber" />
   <Mobile:Label runat="server" id="lblAmount" />
</Mobile:Form>
23.3.Form
23.3.1.Mobile:Form
23.3.2.Post to Mobile:form
23.3.3.Submit a form
23.3.4.Set ActiveForm
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.