⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listing2303.aspx

📁 asp入门到精通的源代码
💻 ASPX
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -