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

📄 listing0907.aspx

📁 asp入门到精通的源代码
💻 ASPX
字号:
<script runat="server">
   sub Page_Load(obj as Object, e as EventArgs)
      if not Page.IsPostBack then
         'create an array of colors
         dim arrColors() as string = _
            {"red", "orange", "yellow", "green", _
             "blue", "indigo", "violet"}

         lbColors.DataSource = arrColors
      end if
      DataBind()
   end sub
</script>

<html><body>
   <form runat="server">
      <asp:Listbox runat="server" id="lbColors"
         width="150"
         AutoPostBack="true"
         SelectionMode="Single" >
      </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 + -