Reynan
Reynan

Reputation: 261

How to make Product List in ASP.net C#

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

My Product Database

Upvotes: 0

Views: 2512

Answers (2)

Harold Javier
Harold Javier

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

Massimiliano Peluso
Massimiliano Peluso

Reputation: 26737

I would use a DataList control. Here you can find a good tutorial

Upvotes: 1

Related Questions