Hi,
I am getting ready to design a piece of software that will basically have a lot of questions, and hold data in a database. Over 100 questions here. Should I just make multiple forms, and have the data stored from form to form, or should I use the same form and simply have it change as the user goes on with the questions? Or is there a better way to go about this??
I am getting ready to design a piece of software that will basically have a lot of questions, and hold data in a database. Over 100 questions here. Should I just make multiple forms, and have the data stored from form to form, or should I use the same form and simply have it change as the user goes on with the questions? Or is there a better way to go about this??
Niradhip ChakrabortyPosted Jul 4, 2008, 1:50 PM
Yes you can do it. Only thing is that you have to create multiple pages.
Why dont you go for datagrid with scrolling option.Inside datagrid you can show all
your questions and by scrolling on user can read all the questions.Anyways all your
questions are coming from database so it will not a big deal to show the questions in datagrid and by doing this you can avoid multiple pages.Think about it
Baruch FPosted Jul 4, 2008, 12:57 AM
Niradhip ChakrabortyPosted Jul 3, 2008, 8:10 PM
Niradhip ChakrabortyPosted Jul 3, 2008, 8:05 PM
Yes you can hide and show it. If you want you can go for next option. Create a table with a scroll and display the questions .
Baruch FPosted Jul 3, 2008, 7:47 PM
Niradhip ChakrabortyPosted Jul 3, 2008, 7:38 PM
You can go with a single form with a previous and next link. You can show 10 questions on each time. Clicking on next link next 10 questions will display.
Or
You can display 100 questions at a time with a scroll. You can give a specific height to your table. So your page won’t have scroll but the table having scrolling option. User can scroll and read out the questions.