Click here to Skip to main content
15,885,757 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi.
My Self Amit Kumar.
I want to develop a website in Asp.net with C# (.net 4.0)
Details-->
(Example)
My website take User Review about my Products

My first page contains 5 question each question have 3 options if user choose first option then it give 5 points for this question similarly if user choose 2nd option then it give 10 points, if user choose 3rd option then it give 15 points,
same for all remaining questions.
at last we count all the point
if total is between 0 to 25 then user not satisfied with product,
similarly if total is between 26 to 50 then good product,
if total is between 51 to 75 then best product.

similarly my website contains 10 product survey , and last we count all 10 product point and display user satisfaction using chart control.

please give me guideline...
Posted
Updated 12-Feb-12 20:07pm
v2
Comments
Sergey Alexandrovich Kryukov 13-Feb-12 2:30am    
You are not telling us what is your problem, so it's hard to guide your. We do not have resources for detailed tutoring.
--SA

Create 1 table
for ProductReview Which should have "UserId","ProductId","QuestionNo","Point"

when you choose the option save value in database
say you have selected product1 and question1 and option value 1
then in database put the data in above table as user1, product1 ,question1,5

then you can retrieve data from database and do the calculation logic as want and display on the page
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900