listbox1_vb.aspx
来自「一些标准控件的举例说明」· ASPX 代码 · 共 34 行
ASPX
34 行
<html>
<head>
<script language="VB" runat="server">
Sub SubmitBtn_Click(ByVal sender As Object, ByVal e As EventArgs)
If ListBox1.SelectedIndex > -1 Then
Label1.Text = "You chose: " + ListBox1.SelectedItem.Text
End If
End Sub
</script>
</head>
<body>
<form id="Form1" 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 + -
显示快捷键?