求助 !! 数据库连接问题
在一 个自定义控件里有一个gridview控件在.aspx文件中有个样的代码
<a href="<%#DataBinder.Eval(Container.DataItem,"addurl") %>" target="_blank"><%#DataBinder.Eval(Container.DataItem,"title") %></a>
在aspx.cs文件中代码为:
GetContent getgg = new GetContent();
OleDbDataReader drgg = getgg.GetGg();
DataGrid1.DataSource = drgg;
DataGrid1.DataBind();
drgg.Close();
在他的数据库中用很多表里都还有'title'字段
我不明白的是他是怎么绑定数据的啊
又是怎么确定绑到了哪个表呢?