-
Notifications
You must be signed in to change notification settings - Fork 0
31 Examples of Feedback
M. Fares edited this page Apr 10, 2018
·
2 revisions
Two examples of feedback are implemented in the application. In these examples, the data is generated in the controller, you need to retrieve this data from a database, then save the result of the feedback to the database.
Example 1: Use of radio buttons. The example may be customized to have a different number of radio buttons for each question.
/Controllers/SurveyController.cs
/Views/Survey/Index.cshtml
Example 2: Use of textbox to input the score
/Controllers/Survey2Controller.cs
/Views/Survey2/Index.html
Example 3: Questions using mixed inputs: radio buttons, textboxes, and textareas
/Controllers/Survey3Controller.cs
/Views/Survey3/Index.html