[求助]未将对象引用设置到对象的实例。
//当不使用数组的时候可以,但是换成数组就错了 DataBase db = new DataBase();
string sqlstring = "select * from lianjie order by id ASC";
DataSet ds = new DataSet();
ds = db.GetDataSet(sqlstring);
HyperLink[] hl = new HyperLink[10];
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
hl[i].Text = ds.Tables[0].Rows[i]["text"].ToString();//未将对象引用设置到对象的实例。
hl[i].NavigateUrl = ds.Tables[0].Rows[i]["value"].ToString();
P1.Controls.Add(hl[i]);
}