aspx页面
 1ListBox选项实现上下移动<form id="form1" runat="server">
 2ListBox选项实现上下移动    <div>
 3ListBox选项实现上下移动    <asp:ListBox ID="ListBox1" runat="server">
 4ListBox选项实现上下移动        <asp:ListItem Text ="aaa"></asp:ListItem>
 5ListBox选项实现上下移动       <asp:ListItem Text ="bbb"></asp:ListItem> 
 6ListBox选项实现上下移动    </asp:ListBox>
 7ListBox选项实现上下移动   
 8ListBox选项实现上下移动   <asp:Button runat="server" ID = "Button1" OnClick="Button1_Click" Text="Up" /> 
 9ListBox选项实现上下移动   <asp:Button runat="server" ID = "Button2" OnClick="Button2_Click" Text="Down" /> 
10ListBox选项实现上下移动    </div>
11ListBox选项实现上下移动    </form>

cs页面
 1ListBox选项实现上下移动protected void Button1_Click(object sender, EventArgs e)
 2        }

相关文章: