how to use add wishlist option in asp.net
I want to ask question how to add wishlist option likewise in flipkart when you buy an item and it added to wish list so this functionality i have to add in my web sit using asp.net
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bhushan GawalePosted Apr 25, 2016, 11:00 AM
1. Use session state - You can use server session objects and keep your wishlist objects in it, you will need to explicitly manage your state if you need to preserve the session data.
Shakti Singh DulawatPosted Apr 25, 2016, 10:27 AM
Table Structure
WishListID Primary Key
ProductID ForeignKey
UserID ForeignKey
InsertDate
Based on insert data you can use those data to display record to customer or can do some math calculation on it.