I want to know is it a gridview control or is it done by using table??? or I know the images used in this grid are from folder. I want to develop a same thing need your help. No idea how to do it. I just know how to use gridview. Thanks and awaiting for your response.
Share
There are lots of ways to do this. You could use ASP.NET MVC. If you stick with ASP.NET Web Forms you could use a GridView, a ListView, a Repeater, etc. I’d suggest using a ListView. It combines many of the best features of the GridView and the Repeater.
Here’s a quick tutorial that walks through using a ListView to display a product listing, including images. It doesn’t look the same as your sample, but the idea is that you can style it however you want with a little HTML/CSS knowledge.
http://weblogs.asp.net/scottgu/archive/2007/08/10/the-asp-listview-control-part-1-building-a-product-listing-page-with-clean-css-ui.aspx
Here’s another article that describes the ListView control and why it’s probably a better fit than the GridView:
http://www.developerfusion.com/article/84471/new-trends-in-aspnet-data-binding-the-listview-control/
If you decide to stick with the GridView, here’s a stack overflow question about displaying images from a GridView. There are some useful links in the answers:
How to display images from a folder in a gridview?