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

📄 listbox1_cs.aspx

📁 一些标准控件的举例说明
💻 ASPX
字号:
<html>
<head>

  <script language="C#" runat="server">

    void SubmitBtn_Click(Object Sender, EventArgs e)
    {
      if (ListBox1.SelectedIndex > -1)
      {
        Label1.Text = "You chose: " + ListBox1.SelectedItem.Text;
      }
    }

  </script>

</head>
<body>
  <form runat="server">
    <h3>
      <font face="Verdana">ListBox Example</font></h3>
    <p>
      <asp:ListBox ID="ListBox1" Width="100px" runat="server">
        <asp:ListItem>Item 1</asp:ListItem>
        <asp:ListItem>Item 2</asp:ListItem>
        <asp:ListItem>Item 3</asp:ListItem>
        <asp:ListItem>Item 4</asp:ListItem>
        <asp:ListItem>Item 5</asp:ListItem>
        <asp:ListItem>Item 6</asp:ListItem>
      </asp:ListBox>
      <asp:Button Text="Submit" ID=submit1 OnClick="SubmitBtn_Click" runat="server" />
    <p>
      <asp:Label ID="Label1" Font-Names="Verdana" Font-Size="10pt" runat="server" />
  </form>
</body>
</html>

⌨️ 快捷键说明

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