Checkbox-lists or individual columns
up vote
0
down vote
favorite
I am trying to design the web form for the questionnaire below. The questionnaire in total has over 200 questions using drop-downs and check-boxes. I am wondering if I should use checkbox lists and create a many to many relation in the database or just create columns of type bit and map them to every single checkbox.
The form wont change in years so I am not worried about the data changing. In the other hand performance is a very important part of the application.

c# asp.net database-design checkboxlist
add a comment |
up vote
0
down vote
favorite
I am trying to design the web form for the questionnaire below. The questionnaire in total has over 200 questions using drop-downs and check-boxes. I am wondering if I should use checkbox lists and create a many to many relation in the database or just create columns of type bit and map them to every single checkbox.
The form wont change in years so I am not worried about the data changing. In the other hand performance is a very important part of the application.

c# asp.net database-design checkboxlist
if they can only mark one chk box then i would go with a chk bx list.
– JohnB
Nov 9 at 4:07
That will make the form database heavy and performance will decrease having to load all the checkboxes name/value and selected options since there is a mix of everything. Some you can select only one and some you can select many. Thats kinda my debate, is it really worth it for a form that will not get any additional values and will remain the same for the years to come.
– Edgar J. Rodriguez
Nov 9 at 4:57
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to design the web form for the questionnaire below. The questionnaire in total has over 200 questions using drop-downs and check-boxes. I am wondering if I should use checkbox lists and create a many to many relation in the database or just create columns of type bit and map them to every single checkbox.
The form wont change in years so I am not worried about the data changing. In the other hand performance is a very important part of the application.

c# asp.net database-design checkboxlist
I am trying to design the web form for the questionnaire below. The questionnaire in total has over 200 questions using drop-downs and check-boxes. I am wondering if I should use checkbox lists and create a many to many relation in the database or just create columns of type bit and map them to every single checkbox.
The form wont change in years so I am not worried about the data changing. In the other hand performance is a very important part of the application.

c# asp.net database-design checkboxlist
c# asp.net database-design checkboxlist
edited Nov 9 at 4:05
John
10.5k31734
10.5k31734
asked Nov 9 at 3:57
Edgar J. Rodriguez
1121112
1121112
if they can only mark one chk box then i would go with a chk bx list.
– JohnB
Nov 9 at 4:07
That will make the form database heavy and performance will decrease having to load all the checkboxes name/value and selected options since there is a mix of everything. Some you can select only one and some you can select many. Thats kinda my debate, is it really worth it for a form that will not get any additional values and will remain the same for the years to come.
– Edgar J. Rodriguez
Nov 9 at 4:57
add a comment |
if they can only mark one chk box then i would go with a chk bx list.
– JohnB
Nov 9 at 4:07
That will make the form database heavy and performance will decrease having to load all the checkboxes name/value and selected options since there is a mix of everything. Some you can select only one and some you can select many. Thats kinda my debate, is it really worth it for a form that will not get any additional values and will remain the same for the years to come.
– Edgar J. Rodriguez
Nov 9 at 4:57
if they can only mark one chk box then i would go with a chk bx list.
– JohnB
Nov 9 at 4:07
if they can only mark one chk box then i would go with a chk bx list.
– JohnB
Nov 9 at 4:07
That will make the form database heavy and performance will decrease having to load all the checkboxes name/value and selected options since there is a mix of everything. Some you can select only one and some you can select many. Thats kinda my debate, is it really worth it for a form that will not get any additional values and will remain the same for the years to come.
– Edgar J. Rodriguez
Nov 9 at 4:57
That will make the form database heavy and performance will decrease having to load all the checkboxes name/value and selected options since there is a mix of everything. Some you can select only one and some you can select many. Thats kinda my debate, is it really worth it for a form that will not get any additional values and will remain the same for the years to come.
– Edgar J. Rodriguez
Nov 9 at 4:57
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53219667%2fcheckbox-lists-or-individual-columns%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
if they can only mark one chk box then i would go with a chk bx list.
– JohnB
Nov 9 at 4:07
That will make the form database heavy and performance will decrease having to load all the checkboxes name/value and selected options since there is a mix of everything. Some you can select only one and some you can select many. Thats kinda my debate, is it really worth it for a form that will not get any additional values and will remain the same for the years to come.
– Edgar J. Rodriguez
Nov 9 at 4:57