1
<form id="form1" runat="server">
2
<div>
3
<asp:ListBox ID="ListBox1" runat="server">
4
<asp:ListItem Text ="aaa"></asp:ListItem>
5
<asp:ListItem Text ="bbb"></asp:ListItem>
6
</asp:ListBox>
7
8
<asp:Button runat="server" ID = "Button1" OnClick="Button1_Click" Text="Up" />
9
<asp:Button runat="server" ID = "Button2" OnClick="Button2_Click" Text="Down" />
10
</div>
11
</form>
2
3
4
5
6
7
8
9
10
11
cs页面
1
protected void Button1_Click(object sender, EventArgs e)
2
}
2