摘要: 界面上的内容1 <asp:DropDownList ID="company" runat="server" AppendDataBoundItems=true>2 <asp:ListItem Selected="true">-请选择-</asp:ListItem>3 </asp:DropDownList>后台代码1 for (int i = company.Items.Count - 1; i > 0; i--)2 {3 company.Items.RemoveAt(i);4 .. 阅读全文
posted @ 2012-05-07 11:44 phoenix_fling 阅读(335) 评论(0) 推荐(0)