var item = new ItemControl(); // this is in the BLL layer.
// DDLGoods is a DropDownList. and the method returns a List<Goods>
List<Goods> get = item.returnGoods(DDLGoods.SelectedItem.Text); var out = new StringBuilder();
out.Append("<tr><td>" + v.name + "</td><td>" + v.designation + "</td><td>" + v.price + "</td><td>" + v.itimId + "</
td><td></tr>");
in the List<Goods> get i have objects, and each object contains images. here in the foreach loop v.image.
how can i display the image in the same out.append in the foreach loop.
I need to wrigth in the foreach loop something that will display my v.image, can anyone please help me ???
can anyone help me please and finish my code with some/little comments on what is happening ??