本文转载自:http://blog.csdn.net/luoxufeng/article/details/6925982 using System; using System.Collections.Generic; public partial class List : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { CreateList(); } private void CreateLi…
using System; using System.Collections.Generic; public partial class List : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { CreateList(); } private void CreateList() { List<string> list = new List<string>(); list.Ad…