listing0906.aspx

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

ASPX
25
字号
<script language="VB" runat="server">
   sub Index_Changed(obj as Object, e as EventArgs)
      DataBind()
   end sub
</script>

<html><body>
   <form runat="server">
      <asp:Listbox runat="server" id="lbColors"
         width="150"
         AutoPostBack=true
         rows="1"
         SelectionMode="Single"
         OnSelectedIndexChanged="Index_Changed" >
         <asp:Listitem value="1">Red</asp:Listitem>
         <asp:Listitem value=" 2">Blue</asp:Listitem>
         <asp:Listitem value=" 3">Green</asp:Listitem>
         <asp:Listitem value=" 4">Yellow</asp:Listitem>
      </asp:Listbox><p>

      <asp:Label id="lblMessage" runat="server"
         Text='<%# lbColors.selectedItem.Text %>' />
   </form>
</body></html>

⌨️ 快捷键说明

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