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

📄 listing0906.aspx

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