开发者

Radio button default state in a questionnaire

开发者 https://www.devze.com 2022-12-16 20:01 出处:网络
I am writing a questionnaire in ASP .NET MVC. The format of the questionnaire is one yes/no question per page. The questionnaire is a safety questionnaire where, for the majority of the time the user

I am writing a questionnaire in ASP .NET MVC. The format of the questionnaire is one yes/no question per page. The questionnaire is a safety questionnaire where, for the majority of the time the user will answer no to the questions. Should I set the default state of the radio buttons to 'no' to save the majority of the users time (enhancing the user experience) or should I leave them both as uns开发者_如何转开发elected so as not to potentially skew the results as a result of users' laziness?

Thanks


Since it is a survey, I'd would not set the default state and make all of the questions required (validating on submit and displaying an error message for skipped questions). That way you are forcing the user to make a decision and not skewing the results.


i suggest using buttons with the answers Yes/No on, that would create a better user experience and could look a lot more user friendly than radio buttons.

0

精彩评论

暂无评论...
验证码 换一张
取 消