Krzysztof Mossakowski
.NET Programming
2008 - Tasks
ASP.NET, Data Binding
Create ASP.NET application with one page presenting quiz's questions.
Use this
quiz questions database
.
The page presents questions in two modes:
before sending answers - see the left image,
after sending answers - see the right image,
questions with correct answers are written using green colour, with incorrect - red,
number of correct answers is displayed on the top of the page,
the user's answers are visible,
the 'New questions' button causes generation of a new set of questions.
Be sure that questions are chosen randomly and answers are shuffled.
It can assumed that the QuestionNumber field of the Quiz table contains consecutive numbers from the range: [1, 124].
Hints:
Button, Label, Panel, AccessDataSource, Repeater
Approximate points:
presenting questions before sending answers: 2.5
random questions: 1.5
shuffled answers: 1.5
presenting questions after sending answers: 2.5
presenting number of correct answers: 1.0
the 'New questions' button's functionality: 1.0
Links for uploading:
Solutions
Corrections