Reputation: 65
my problem is: how to get product by ProductCategoryID?
Upvotes: 0
Views: 512
Reputation: 87
First pass 'Hardware' category Id to click function and then Use that in your Sql statement as parameter. In Sql statement-
Select * from Products where ProductCategoryID=@PassedCategoryID
Upvotes: 1