listbox1_cs.aspx
来自「一些标准控件的举例说明」· ASPX 代码 · 共 36 行
ASPX
36 行
<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 + =
减小字号Ctrl + -
显示快捷键?