Help structuring questionnaire

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need help in structuring a 200 question survey. Each question has three
responses, and I want all 200 questions displayed at the same time with the
user using the scrollbar to go down. What is the best approach?
 
sounds a LOT like homework.

Assuming your data is in a database, query the db, get the data into a
dataset with linked tables using a stored proc. Then loop through the
records in the question table and display the question and related answers
by writing the correct HTML to Response.Write. Make sure to set your
post-back values in a unique manner, so that when the user posts back the
form, you can tell which answer they picked.

Hope this helps without spoiling the assignment.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 
Back
Top