Reputation: 261
how to display Product list in ASP.net C#? i'm creating e-commerce website for my thesis i need to display it in a grid form like this >> sample product list with limitation per page example 10 products per page please i need your help
Upvotes: 0
Views: 2512
Reputation: 887
There are different ways to do that. There's no one right or correct solution. It all depends where you're comfortable workin' with.
Can you please show us what you've already done?
Now with regards to the filtering, you may use a combination of GridView + DropDownList (where DDL will be used to filter the result). You can look for some great tutorials online.
I hope it helps you.
Upvotes: 0
Reputation: 26737
I would use a DataList
control. Here you can find a good tutorial
Upvotes: 1