要在datalist中的ItemDataBound方法里赋值
protected void dlBigStep_ItemDataBound(object sender, DataListItemEventArgs e)
{
Label l1= (Label)e.Item.FindControl("lable1");
Label l2= (Label)e.Item.FindControl("lable2");
l1="";
l2="";
}
多条数据的话就自己做个循环吧,要不所有的值都一样了
Text=<%# Eval("字段名") %>