aspx中如何绑定llistbox数据列表
DataTable dt = new DataTable(); dt = goodsbll.Get_prodtolist(_fatherpeoid,_sonpeoid).Tables[0]; if (dt.Rows.Count > 0) { foreach (DataRow dr in dt.Rows) { ListEditItem listitem = new ListEditItem(); listitem.Text = dr["GOODS_ID"].ToString(); listitem.Value = dr["GOODSNAME"].ToString(); listitem.ImageUrl = "~/Content/Images/noimageLOGO.png"; // 商品logoogo list_goodsname.Items.Add(listitem); } } this.list_goodsname.DataBind();
我还是会相信,星星会说话,石头会开花,穿过夏天的栅栏和冬天的风雪过后,你终会抵达。