ASP.NET2.0中 GridView嵌套的问题
ASP.NET2.0+sql 2000:
我给GridView中的TemplateField里嵌套一个GridView,怎么给里面的那个GridView动态的帮定数据?
------解决方案--------------------通过FindControl找到这个gridview然后绑定数据。
------解决方案--------------------GridView GRTemp=(GridView)e.Row.Cells[1].FindControl( "GridView2 ");
GRTemp.DataSource=你的source;
GRTemp.DataBind();
------解决方案--------------------http://blog.csdn.net/net_lover/archive/2006/12/19/1448790.aspx