摘要: 这个东西不是什么复杂的东西, 帮着小兄弟写个Demo, 实现个Bindingpublic partial class _Default : System.Web.UI.Page{ protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Bind(); } } private List<User> GetData() { List<User> list = new List<User>(); list.Add(new User() { id = 1, Name = &q 阅读全文
posted @ 2011-10-31 11:14 shangb 阅读(197) 评论(0) 推荐(0) 编辑