怎么找不到,如果是Web有GridView,如果是WinForm有DataGridView,用法大同小异。
05呀,,,就只是在03上把名字改了下,,用法一样的...没什么难的
我试了 data source 和data member都没成功,可能是有其他问题吧
你在05里用DATAGIDVIEW没成功么,,.还是你的功能没实现啊,,,说说你的做法,,绑定是一样的,,,,
举例说明问题:DataSet ds = new DataSet();ds.Tables.Add("student");ds.Tables["student"].Columns.Add("name",typeof(string));ds.Tables["student"].Rows.Add(new Object[] { "张三"});this.dataGridView1.DataSource = ds.Tables["student"].DefaultView;
如果是web提供DataSource 后还需要来这么一下下this.dataGridView1.DataBind();
已经好了哦谢谢各位this.datagridview1.DataSource=ds.tables["temp"].defaultview;