📄 dropdownlistselected.aspx
字号:
<Script Runat="Server">
Sub Button_Click( s As Object, e As EventArgs )
lblSelectedIndex.Text = dropCategory.SelectedIndex
lblSelectedItem.Text = dropCategory.SelectedItem.Text
End Sub
</Script>
<html>
<head><title>DropDownListSelected.aspx</title></head>
<body>
<form Runat="Server">
<asp:DropDownList
ID="dropCategory"
Runat="Server">
<asp:ListItem Text="Country Music" />
<asp:ListItem Text="Rock Music" Selected="True"/>
<asp:ListItem Text="Classical Music"/>
</asp:DropDownList>
<asp:Button
Text="Pick A Category!"
OnClick="Button_Click"
Runat="Server" />
<hr>
Selected Index:
<asp:Label
ID="lblSelectedIndex"
Runat="Server" />
<p>
Selected Item:
<asp:Label
ID="lblSelectedItem"
Runat="Server" />
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -