listing2303.aspx

来自「asp入门到精通的源代码」· ASPX 代码 · 共 27 行

ASPX
27
字号
<%@ 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 StockPick(obj as Object, e as ListCommandEventArgs)
      lblName.Text = "Price for " + e.ListItem.Text
      lblPrice.Text = e.ListItem.Value
      ActiveForm = frmPrice
   end Sub
</script>

<Mobile:Form id="frmMenu" BackColor="#ccddcc" runat="server" >
   <Mobile:Label runat="server" StyleReference="title" 
      Text="Companies"/>
   <Mobile:List runat="server" OnItemCommand="StockPick">
      <Item Text="Microsoft" Value="56.10" />
      <Item Text="Cisco" Value="32.45" />
      <Item Text="AMD" Value="132.34" />
      <Item Text="Agilent" Value="132.33" />
   </Mobile:List> 
</Mobile:Form>

<Mobile:Form id="frmPrice" BackColor="#ccddcc" runat="server" >
    <Mobile:Label id="lblName" runat="server"/>
    <Mobile:Label id="lblPrice" runat="server"/>
</Mobile:Form>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?